-rw-r--r-- | libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp index 74a8158..b9ff9db 100644 --- a/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp +++ b/libopie2/examples/opiecore/onotifydemo/onotifydemo.cpp @@ -96,17 +96,17 @@ public: } else { odebug << "cancelled." << oendl; } } public slots: - void modifierClicked( int modifier ) { (int)m ^= modifier; }; + void modifierClicked( int modifier ) { m = static_cast<OFileNotificationType>( (int)m ^ int(modifier) ); }; void addSingle() { addTrigger(); }; void addMulti() { addTrigger( true ); }; void delTrigger() { QListViewItem* item = l->selectedItem(); if ( !item ) { |