-rw-r--r-- | libopie2/opiecore/ofilenotify.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie2/opiecore/ofilenotify.h b/libopie2/opiecore/ofilenotify.h index bd2f9d0..d820f7c 100644 --- a/libopie2/opiecore/ofilenotify.h +++ b/libopie2/opiecore/ofilenotify.h | |||
@@ -111,16 +111,17 @@ class OFileNotification : public QObject | |||
111 | * | 111 | * |
112 | * int main( int argc, char **argv ) | 112 | * int main( int argc, char **argv ) |
113 | * { | 113 | * { |
114 | * OApplication a( argc, argv, "File Notification Example" ); | 114 | * OApplication a( argc, argv, "File Notification Example" ); |
115 | * OFileNotification::singleShot( "/tmp/quit", &a, SLOT(quit()), Create ); | 115 | * OFileNotification::singleShot( "/tmp/quit", &a, SLOT(quit()), Create ); |
116 | * ... // create and show your widgets | 116 | * ... // create and show your widgets |
117 | * return a.exec(); | 117 | * return a.exec(); |
118 | * } | 118 | * } |
119 | * </pre> | ||
119 | * | 120 | * |
120 | * This sample program automatically terminates when the file "/tmp/quite" has been created. | 121 | * This sample program automatically terminates when the file "/tmp/quite" has been created. |
121 | * | 122 | * |
122 | * | 123 | * |
123 | * The @a receiver is the receiving object and the @a member is the slot. | 124 | * The @a receiver is the receiving object and the @a member is the slot. |
124 | **/ | 125 | **/ |
125 | static void singleShot( const QString& path, QObject* receiver, const char* member, OFileNotificationType type = Modify ); | 126 | static void singleShot( const QString& path, QObject* receiver, const char* member, OFileNotificationType type = Modify ); |
126 | /** | 127 | /** |