summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/configdialog.cpp7
-rw-r--r--noncore/apps/opie-console/file_layer.cpp3
-rw-r--r--noncore/apps/opie-console/profileeditorplugins.cpp25
-rw-r--r--noncore/apps/opie-console/profileeditorplugins.h3
4 files changed, 19 insertions, 19 deletions
diff --git a/noncore/apps/opie-console/configdialog.cpp b/noncore/apps/opie-console/configdialog.cpp
index 50512b6..8745305 100644
--- a/noncore/apps/opie-console/configdialog.cpp
+++ b/noncore/apps/opie-console/configdialog.cpp
@@ -1,13 +1,14 @@
1#include <qdialog.h>
2#include <qlistview.h>
3
1 4
2#include "profile.h" 5#include "profile.h"
3#include "qlistview.h"
4#include "configdialog.h" 6#include "configdialog.h"
5#include "profileeditordialog.h"
6#include "metafactory.h" 7#include "metafactory.h"
7#include "qdialog.h" 8#include "profileeditordialog.h"
8 9
9class ConfigListItem : public QListViewItem { 10class ConfigListItem : public QListViewItem {
10public: 11public:
11 ConfigListItem( QListView* item, const Profile& ); 12 ConfigListItem( QListView* item, const Profile& );
12 ~ConfigListItem(); 13 ~ConfigListItem();
13 Profile profile()const; 14 Profile profile()const;
diff --git a/noncore/apps/opie-console/file_layer.cpp b/noncore/apps/opie-console/file_layer.cpp
index 79caa8a..43e9c8f 100644
--- a/noncore/apps/opie-console/file_layer.cpp
+++ b/noncore/apps/opie-console/file_layer.cpp
@@ -1,10 +1,11 @@
1#include "file_layer.h"
2#include <qfile.h> 1#include <qfile.h>
3#include <opie/oprocess.h> 2#include <opie/oprocess.h>
4 3
4#include "file_layer.h"
5
5FileTransferLayer::FileTransferLayer(IOLayer *layer) 6FileTransferLayer::FileTransferLayer(IOLayer *layer)
6 : QObject(), m_layer( layer ) 7 : QObject(), m_layer( layer )
7{ 8{
8} 9}
9 10
10FileTransferLayer::~FileTransferLayer() { 11FileTransferLayer::~FileTransferLayer() {
diff --git a/noncore/apps/opie-console/profileeditorplugins.cpp b/noncore/apps/opie-console/profileeditorplugins.cpp
index 937516c..45b2148 100644
--- a/noncore/apps/opie-console/profileeditorplugins.cpp
+++ b/noncore/apps/opie-console/profileeditorplugins.cpp
@@ -1,22 +1,21 @@
1 1
2#include "profileeditorplugins.h" 2#include <qframe.h>
3#include "profile.h" 3#include <qlabel.h>
4 4#include <qlineedit.h>
5#include "qframe.h" 5#include <qlayout.h>
6#include "qlabel.h" 6#include <qcombobox.h>
7#include "qlineedit.h" 7#include <qradiobutton.h>
8#include "qlayout.h" 8#include <qcheckbox.h>
9#include "qcombobox.h" 9#include <qbuttongroup.h>
10#include "qradiobutton.h" 10#include <qhgroupbox.h>
11#include "qcheckbox.h" 11#include <qvbox.h>
12#include "qbuttongroup.h"
13#include "qhgroupbox.h"
14#include "qvbox.h"
15 12
16#include "io_serial.h" 13#include "io_serial.h"
14#include "profile.h"
15#include "profileeditorplugins.h"
17 16
18// Base class 17// Base class
19 18
20ProfileEditorPlugin::ProfileEditorPlugin(QWidget *parent, Profile *p) 19ProfileEditorPlugin::ProfileEditorPlugin(QWidget *parent, Profile *p)
21: QObject() 20: QObject()
22{ 21{
diff --git a/noncore/apps/opie-console/profileeditorplugins.h b/noncore/apps/opie-console/profileeditorplugins.h
index 4ca780e..f576143 100644
--- a/noncore/apps/opie-console/profileeditorplugins.h
+++ b/noncore/apps/opie-console/profileeditorplugins.h
@@ -1,15 +1,14 @@
1#ifndef PROFILE_EDITOR_PLUGINS_H 1#ifndef PROFILE_EDITOR_PLUGINS_H
2#define PROFILE_EDITOR_PLUGINS_H 2#define PROFILE_EDITOR_PLUGINS_H
3 3
4#include "profile.h"
5 4
6#include <qobject.h> 5#include <qobject.h>
7 6
8class QWidget; 7class QWidget;
9 8class Profile;
10class ProfileEditorPlugin : public QObject 9class ProfileEditorPlugin : public QObject
11{ 10{
12 Q_OBJECT 11 Q_OBJECT
13public: 12public:
14 ProfileEditorPlugin(QWidget *parent); 13 ProfileEditorPlugin(QWidget *parent);
15 14