-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 | |||
@@ -57,45 +57,45 @@ public: | |||
57 | connect( plus2, SIGNAL( clicked() ), this, SLOT( addMulti() ) ); | 57 | connect( plus2, SIGNAL( clicked() ), this, SLOT( addMulti() ) ); |
58 | connect( minus, SIGNAL( clicked() ), this, SLOT( delTrigger() ) ); | 58 | connect( minus, SIGNAL( clicked() ), this, SLOT( delTrigger() ) ); |
59 | 59 | ||
60 | g1->show(); | 60 | g1->show(); |
61 | g2->show(); | 61 | g2->show(); |
62 | l->show(); | 62 | l->show(); |
63 | hbox->show(); | 63 | hbox->show(); |
64 | vbox->show(); | 64 | vbox->show(); |
65 | showMainWidget( vbox ); | 65 | showMainWidget( vbox ); |
66 | } | 66 | } |
67 | 67 | ||
68 | public: | 68 | public: |
69 | void addTrigger( bool multi = False ) | 69 | void addTrigger( bool multi = false ) |
70 | { | 70 | { |
71 | QString filename = OFileDialog::getOpenFileName( OFileSelector::ExtendedAll ); | 71 | QString filename = OFileDialog::getOpenFileName( OFileSelector::ExtendedAll ); |
72 | if ( !filename.isEmpty() ) | 72 | if ( !filename.isEmpty() ) |
73 | { | 73 | { |
74 | odebug << "Filename = " << filename << oendl; | 74 | odebug << "Filename = " << filename << oendl; |
75 | new OListViewItem( l, filename, "Modify" ); | 75 | new OListViewItem( l, filename, "Modify" ); |
76 | 76 | ||
77 | 77 | ||
78 | 78 | ||
79 | OFileNotifier::singleShot( filename, this, SLOT( trigger() ) ); | 79 | OFileNotifier::singleShot( filename, this, SLOT( trigger() ) ); |
80 | } | 80 | } |
81 | else | 81 | else |
82 | { | 82 | { |
83 | odebug << "cancelled." << oendl; | 83 | odebug << "cancelled." << oendl; |
84 | } | 84 | } |
85 | { | 85 | } |
86 | 86 | ||
87 | public slots: | 87 | public slots: |
88 | 88 | ||
89 | void addSingle() { addTrigger(); } | 89 | void addSingle() { addTrigger(); }; |
90 | void addMulti() { addTrigger( true ); }; | 90 | void addMulti() { addTrigger( true ); }; |
91 | 91 | ||
92 | void delTrigger() | 92 | void delTrigger() |
93 | { | 93 | { |
94 | QString filename( "bla" ); | 94 | QString filename( "bla" ); |
95 | odebug << "Filename = " << filename << oendl; | 95 | odebug << "Filename = " << filename << oendl; |
96 | } | 96 | } |
97 | 97 | ||
98 | void trigger() | 98 | void trigger() |
99 | { | 99 | { |
100 | owarn << "FIRE!" << oendl; | 100 | owarn << "FIRE!" << oendl; |
101 | } | 101 | } |