summaryrefslogtreecommitdiff
path: root/noncore/tools
authorharlekin <harlekin>2002-08-01 00:47:09 (UTC)
committer harlekin <harlekin>2002-08-01 00:47:09 (UTC)
commitba034bf4cb91b83654056945fc27313a28528015 (patch) (unidiff)
tree4df33783ca21017424135aacc2e45b94437cfdff /noncore/tools
parent26ff0c72228b9c89b079dfa381d448b6152eb408 (diff)
downloadopie-ba034bf4cb91b83654056945fc27313a28528015.zip
opie-ba034bf4cb91b83654056945fc27313a28528015.tar.gz
opie-ba034bf4cb91b83654056945fc27313a28528015.tar.bz2
gcc3.x fixes
Diffstat (limited to 'noncore/tools') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/helptab.cpp2
-rw-r--r--noncore/tools/remote/helptab.h7
-rw-r--r--noncore/tools/remote/recorddialog.cpp9
-rw-r--r--noncore/tools/remote/recorddialog.h8
4 files changed, 19 insertions, 7 deletions
diff --git a/noncore/tools/remote/helptab.cpp b/noncore/tools/remote/helptab.cpp
index 3c53ab6..ac51e13 100644
--- a/noncore/tools/remote/helptab.cpp
+++ b/noncore/tools/remote/helptab.cpp
@@ -18,3 +18,3 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 18
19HelpTab::HelpTab(QWidget *parent=0, const char *name=0):QWidget(parent, name) 19HelpTab::HelpTab(QWidget *parent, const char *name):QWidget(parent, name)
20{ 20{
diff --git a/noncore/tools/remote/helptab.h b/noncore/tools/remote/helptab.h
index f3f99b3..83f24ef 100644
--- a/noncore/tools/remote/helptab.h
+++ b/noncore/tools/remote/helptab.h
@@ -16,2 +16,5 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 16
17#ifndef HELP_TAB_H
18#define HELP_TAB_H
19
17#include <qwidget.h> 20#include <qwidget.h>
@@ -25,2 +28,4 @@ public:
25 HelpTab(QWidget *parent=0, const char *name=0); 28 HelpTab(QWidget *parent=0, const char *name=0);
26}; \ No newline at end of file 29};
30
31#endif
diff --git a/noncore/tools/remote/recorddialog.cpp b/noncore/tools/remote/recorddialog.cpp
index f7cd30c..cfab730 100644
--- a/noncore/tools/remote/recorddialog.cpp
+++ b/noncore/tools/remote/recorddialog.cpp
@@ -18,3 +18,4 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 18
19RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent, name) 19RecordDialog::RecordDialog(QWidget *parent, const char *name)
20 :QDialog(parent, name)
20{ 21{
@@ -22,3 +23,3 @@ RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent
22 QHBoxLayout *hlayout = new QHBoxLayout(this); 23 QHBoxLayout *hlayout = new QHBoxLayout(this);
23 24
24 layout->insertSpacing(0,5); 25 layout->insertSpacing(0,5);
@@ -34,3 +35,3 @@ RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent
34 hlayout->insertSpacing(-1, 5); 35 hlayout->insertSpacing(-1, 5);
35 36
36 QPushButton *ret = new QPushButton("Return", this, "return"); 37 QPushButton *ret = new QPushButton("Return", this, "return");
@@ -40,3 +41,3 @@ RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent
40 where = 0; 41 where = 0;
41 42
42 record = new OProcess; 43 record = new OProcess;
diff --git a/noncore/tools/remote/recorddialog.h b/noncore/tools/remote/recorddialog.h
index 38b2bb4..e4dcae6 100644
--- a/noncore/tools/remote/recorddialog.h
+++ b/noncore/tools/remote/recorddialog.h
@@ -16,2 +16,5 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 16
17#ifndef RecordDialog_H
18#define RecordDialog_H
19
17#include <qdialog.h> 20#include <qdialog.h>
@@ -42,2 +45,5 @@ private:
42 int where; 45 int where;
43}; \ No newline at end of file 46};
47
48#endif
49