do not destroy applet's widget: it's done by maemo-af-desktop
[simple-launcher] / test2.cc
1 #include <iostream>
2
3 #include "gconf-wrapper.h"
4
5 int main() {
6   g_type_init();
7
8   GConfKey sla("/apps/simple-launcher");
9
10   GConfBooleanOption transparency(sla, "transparency", false);
11
12   std::cout << "Value: " << transparency.value() << std::endl;
13
14   return 0;
15 }