author | mickeyl <mickeyl> | 2004-04-24 11:04:03 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-24 11:04:03 (UTC) |
commit | 9ac401fbe5c80f710757926920d734e93a7e159b (patch) (side-by-side diff) | |
tree | 1011b8aed028e9f6f0a9118e0fcd8ae49d211a38 | |
parent | 34595890e8373c91a3f5b120dfd63ea3023e46c5 (diff) | |
download | opie-9ac401fbe5c80f710757926920d734e93a7e159b.zip opie-9ac401fbe5c80f710757926920d734e93a7e159b.tar.gz opie-9ac401fbe5c80f710757926920d734e93a7e159b.tar.bz2 |
gcc3.4 fixlet
-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 @@ -56,89 +56,89 @@ public: QPushButton* plus2 = new QPushButton( "Add\n&Multi", g1 ); QPushButton* minus = new QPushButton( "&Remove\nIt!", g1 ); g1->insert( plus1, 0 ); g1->insert( plus2, 1 ); g1->insert( minus, 2 ); connect( plus1, SIGNAL( clicked() ), this, SLOT( addSingle() ) ); connect( plus2, SIGNAL( clicked() ), this, SLOT( addMulti() ) ); connect( minus, SIGNAL( clicked() ), this, SLOT( delTrigger() ) ); g1->show(); g2->show(); l->show(); hbox->show(); vbox->show(); showMainWidget( vbox ); } public: void addTrigger( bool multi = false ) { if ( !m ) { QMessageBox::warning( 0, "Add Trigger", "<p>Can't add trigger without at least one selected trigger type</p>", "&Sorry", 0 ); return; } QString filename = OFileDialog::getOpenFileName( OFileSelector::ExtendedAll ); if ( !filename.isEmpty() ) { odebug << "Filename = " << filename << oendl; int fntype = m; if ( multi ) fntype |=(int) Multi; QString modifier = QString().sprintf( " = 0x%08x", fntype ); new OListViewItem( l, filename, multi ? "MULTI" : "SINGLE", modifier ); if ( !multi ) OFileNotification::singleShot( filename, this, SLOT( trigger() ), (OFileNotificationType) fntype ); else OFileNotification::singleShot( filename, this, SLOT( trigger() ), (OFileNotificationType) fntype ); } 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 ) { QMessageBox::warning( 0, "Del Trigger", "<p>No trigger selected!</p>", "&Sorry", 0 ); return; } else { QString filename( item->text( 0 ) ); odebug << "Filename = " << filename << oendl; } } void trigger() { owarn << "FIRE!" << oendl; } private: OListView* l; QButtonGroup* g1; QButtonGroup* g2; OFileNotificationType m; }; int main( int argc, char** argv ) { DemoApp* app = new DemoApp( argc, argv ); app->exec(); return 0; } #include "moc/onotifydemo.moc" |