-rw-r--r-- | libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp | 6 |
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 @@ -67,5 +67,5 @@ public: public: - void addTrigger( bool multi = False ) + void addTrigger( bool multi = false ) { QString filename = OFileDialog::getOpenFileName( OFileSelector::ExtendedAll ); @@ -83,9 +83,9 @@ public: odebug << "cancelled." << oendl; } - { + } public slots: - void addSingle() { addTrigger(); } + void addSingle() { addTrigger(); }; void addMulti() { addTrigger( true ); }; |