summaryrefslogtreecommitdiff
authorjosef <josef>2002-10-07 16:03:17 (UTC)
committer josef <josef>2002-10-07 16:03:17 (UTC)
commitab5b7ba61580bfd3aa20297e67bd9fa6b6c90d41 (patch) (unidiff)
tree40ae13308e3509ffed90570b22ffbb000fe7cb10
parente68537563c9950654b9a771730f0fc3890803a54 (diff)
downloadopie-ab5b7ba61580bfd3aa20297e67bd9fa6b6c90d41.zip
opie-ab5b7ba61580bfd3aa20297e67bd9fa6b6c90d41.tar.gz
opie-ab5b7ba61580bfd3aa20297e67bd9fa6b6c90d41.tar.bz2
- forgot : QObject()
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditorplugins.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/profileeditorplugins.cpp b/noncore/apps/opie-console/profileeditorplugins.cpp
index a0bcab8..b63fa1c 100644
--- a/noncore/apps/opie-console/profileeditorplugins.cpp
+++ b/noncore/apps/opie-console/profileeditorplugins.cpp
@@ -11,16 +11,17 @@
11#include "qcheckbox.h" 11#include "qcheckbox.h"
12#include "qbuttongroup.h" 12#include "qbuttongroup.h"
13 13
14#include "io_serial.h" 14#include "io_serial.h"
15 15
16// Base class 16// Base class
17 17
18ProfileEditorPlugin::ProfileEditorPlugin(QWidget *parent, Profile *p) 18ProfileEditorPlugin::ProfileEditorPlugin(QWidget *parent, Profile *p)
19: QObject()
19{ 20{
20 m_parent = parent; 21 m_parent = parent;
21 m_profile = p; 22 m_profile = p;
22 m_widget = NULL; 23 m_widget = NULL;
23} 24}
24 25
25ProfileEditorPlugin::~ProfileEditorPlugin() 26ProfileEditorPlugin::~ProfileEditorPlugin()
26{ 27{