author | zecke <zecke> | 2004-09-10 11:46:08 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:46:08 (UTC) |
commit | e2fa8fdfff6bb0460350d5f1017ead99deea7a0b (patch) (unidiff) | |
tree | 1a4513b5959514a4b33ead8f4970abc2ab37cb19 | |
parent | 5f85bf8c95f2c9f1ca6b784d3adbbcad396a16fa (diff) | |
download | opie-e2fa8fdfff6bb0460350d5f1017ead99deea7a0b.zip opie-e2fa8fdfff6bb0460350d5f1017ead99deea7a0b.tar.gz opie-e2fa8fdfff6bb0460350d5f1017ead99deea7a0b.tar.bz2 |
Add new line at the end
-rw-r--r-- | examples/applet/simpleimpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/applet/simpleimpl.cpp b/examples/applet/simpleimpl.cpp index 62d9bf7..ff651ca 100644 --- a/examples/applet/simpleimpl.cpp +++ b/examples/applet/simpleimpl.cpp | |||
@@ -74,17 +74,18 @@ void SimpleApplet::paintEvent( QPaintEvent* ) { | |||
74 | /* simpy draw the pixmap from the start of this widget */ | 74 | /* simpy draw the pixmap from the start of this widget */ |
75 | p.drawPixmap(0, 0, *m_pix ); | 75 | p.drawPixmap(0, 0, *m_pix ); |
76 | } | 76 | } |
77 | 77 | ||
78 | /* | 78 | /* |
79 | * We need to add this symbol for the plugin exporter! | 79 | * We need to add this symbol for the plugin exporter! |
80 | */ | 80 | */ |
81 | int SimpleApplet::position(){ | 81 | int SimpleApplet::position(){ |
82 | return 1; | 82 | return 1; |
83 | } | 83 | } |
84 | 84 | ||
85 | 85 | ||
86 | 86 | ||
87 | /* | 87 | /* |
88 | * Here comes the implementation of the interface | 88 | * Here comes the implementation of the interface |
89 | */ | 89 | */ |
90 | EXPORT_OPIE_APPLET_v1( SimpleApplet ) \ No newline at end of file | 90 | EXPORT_OPIE_APPLET_v1( SimpleApplet ) |
91 | |||