summaryrefslogtreecommitdiff
authorzecke <zecke>2004-02-05 17:21:52 (UTC)
committer zecke <zecke>2004-02-05 17:21:52 (UTC)
commit87e8d127d9f8cf80add1b419abac74a5ca694c6f (patch) (unidiff)
treea58946607a0a5312c8df247ae8a9a4cda7fce094
parent09c9d7deb71c0130959449c144b9a29488a7e14f (diff)
downloadopie-87e8d127d9f8cf80add1b419abac74a5ca694c6f.zip
opie-87e8d127d9f8cf80add1b419abac74a5ca694c6f.tar.gz
opie-87e8d127d9f8cf80add1b419abac74a5ca694c6f.tar.bz2
Janitor: remove ulong ref as it is unneeded
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--examples/todayplugin/examplepluginimpl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/todayplugin/examplepluginimpl.h b/examples/todayplugin/examplepluginimpl.h
index 187d6e8..77ec4f6 100644
--- a/examples/todayplugin/examplepluginimpl.h
+++ b/examples/todayplugin/examplepluginimpl.h
@@ -4,28 +4,27 @@
4 * email : harlekin@handhelds.org 4 * email : harlekin@handhelds.org
5 * 5 *
6 */ 6 */
7 7
8#ifndef EXAMPLE_PLUGIN_IMPL_H 8#ifndef EXAMPLE_PLUGIN_IMPL_H
9#define EXAMPLE_PLUGIN_IMPL_H 9#define EXAMPLE_PLUGIN_IMPL_H
10 10
11#include <opie/todayplugininterface.h> 11#include <opie/todayplugininterface.h>
12 12
13class ExamplePlugin; 13class ExamplePlugin;
14 14
15class ExamplePluginImpl : public TodayPluginInterface{ 15class ExamplePluginImpl : public TodayPluginInterface{
16 16
17public: 17public:
18 ExamplePluginImpl(); 18 ExamplePluginImpl();
19 virtual ~ExamplePluginImpl(); 19 virtual ~ExamplePluginImpl();
20 20
21 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 21 QRESULT queryInterface( const QUuid &, QUnknownInterface** );
22 Q_REFCOUNT 22 Q_REFCOUNT
23 23
24 virtual TodayPluginObject *guiPart(); 24 virtual TodayPluginObject *guiPart();
25 25
26private: 26private:
27 ExamplePlugin *examplePlugin; 27 ExamplePlugin *examplePlugin;
28 ulong ref;
29}; 28};
30 29
31#endif 30#endif