summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
index 5b1b6ed..a8a5717 100644
--- a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
+++ b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp
@@ -63,13 +63,13 @@ public:
hbox->show();
vbox->show();
showMainWidget( vbox );
}
public:
- void addTrigger( bool multi = False )
+ void addTrigger( bool multi = false )
{
QString filename = OFileDialog::getOpenFileName( OFileSelector::ExtendedAll );
if ( !filename.isEmpty() )
{
odebug << "Filename = " << filename << oendl;
new OListViewItem( l, filename, "Modify" );
@@ -79,17 +79,17 @@ public:
OFileNotifier::singleShot( filename, this, SLOT( trigger() ) );
}
else
{
odebug << "cancelled." << oendl;
}
- {
+ }
public slots:
- void addSingle() { addTrigger(); }
+ void addSingle() { addTrigger(); };
void addMulti() { addTrigger( true ); };
void delTrigger()
{
QString filename( "bla" );
odebug << "Filename = " << filename << oendl;