From: mishas Date: Thu, 12 Apr 2007 10:45:48 +0000 (+0000) Subject: added a really simple test case :) X-Git-Url: https://vcs.maemo.org/git/?p=simple-launcher;a=commitdiff_plain;h=69dced413a056fe0e712fb0f1772a9657ac1f578 added a really simple test case :) git-svn-id: file:///svnroot/simple-launcher/trunk@174 3ba93dab-e023-0410-b42a-de7732cf370a --- diff --git a/test2.cc b/test2.cc index ad3d36c..261b547 100644 --- a/test2.cc +++ b/test2.cc @@ -3,5 +3,13 @@ #include "gconf-wrapper.h" int main() { - return 0; + g_type_init(); + + GConfKey sla("/apps/simple-launcher"); + + GConfBooleanOption transparency(sla, "transparency", false); + + std::cout << "Value: " << transparency.value() << std::endl; + + return 0; }