summaryrefslogtreecommitdiff
path: root/libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp
authorzecke <zecke>2005-01-23 20:21:35 (UTC)
committer zecke <zecke>2005-01-23 20:21:35 (UTC)
commit8f2fbef1de1b3803a21d51752fee1014c951cc12 (patch) (side-by-side diff)
tree9289dbe83d2f25af0e95adcad7e3e230920a9b12 /libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp
parentda166ce6066568db9b7ac0bf5c2cc0dc9afb0776 (diff)
downloadopie-8f2fbef1de1b3803a21d51752fee1014c951cc12.zip
opie-8f2fbef1de1b3803a21d51752fee1014c951cc12.tar.gz
opie-8f2fbef1de1b3803a21d51752fee1014c951cc12.tar.bz2
-Use the global directory for .obj and .moc
-Include the foo.moc to work better The problem just came up yesterday
Diffstat (limited to 'libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp b/libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp
index 6712870..2ee4a65 100644
--- a/libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp
+++ b/libopie2/examples/opiecore/oconfigdemo/oconfigdemo.cpp
@@ -1,33 +1,32 @@
#include <opie2/oapplication.h>
#include <opie2/oconfig.h>
#include <qpe/config.h>
using namespace Opie::Core;
int main( int argc, char** argv )
{
OApplication* app = new OApplication( argc, argv, "MyConfigDemoApplication" );
OConfigGroupSaver c1( app->config(), "MyGroup" );
app->config()->writeEntry( "AnEntry", "InMyGroup" );
{
OConfigGroupSaver c2( c1.config(), "AnotherGroup" );
app->config()->writeEntry( "AnEntry", "InAnotherGroup" );
} // closing the scope returns to the last group
app->config()->writeEntry( "AnotherEntry", "InMyGroup" );
// do more stuff ...
// in this (special) case it is necessary to manually call OConfig::write() (see below)
app->config()->write();
// can't delete the app when using the OConfigGroupSaver on top level scope,
// because the destructor of the OConfigGroupSaver needs an application object
//delete app; // destructor deletes config which writes changes back to disk
return 0;
}
-//#include "moc/oconfigdemo.moc"