summaryrefslogtreecommitdiff
path: root/library/network.cpp
Unidiff
Diffstat (limited to 'library/network.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/network.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/library/network.cpp b/library/network.cpp
index e6d2781..185b147 100644
--- a/library/network.cpp
+++ b/library/network.cpp
@@ -1,6 +1,6 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
@@ -26,5 +26,7 @@
26#include "qpe/resource.h" 26#include "qpe/resource.h"
27#include "qpe/qpeapplication.h" 27#include "qpe/qpeapplication.h"
28#ifdef QWS
28#include <qpe/qcopenvelope_qws.h> 29#include <qpe/qcopenvelope_qws.h>
30#endif
29#include <qpe/qlibrary.h> 31#include <qpe/qlibrary.h>
30 32
@@ -37,4 +39,5 @@
37#include <stdlib.h> 39#include <stdlib.h>
38 40
41#ifndef QT_NO_COP
39class NetworkEmitter : public QCopChannel { 42class NetworkEmitter : public QCopChannel {
40 Q_OBJECT 43 Q_OBJECT
@@ -69,4 +72,5 @@ void Network::start(const QString& choice, const QString& password)
69 \class Network network.h 72 \class Network network.h
70 \brief The Network class provides network access functionality. 73 \brief The Network class provides network access functionality.
74 \internal
71*/ 75*/
72 76
@@ -114,4 +118,5 @@ void Network::connectChoiceChange(QObject* receiver, const char* slot)
114} 118}
115 119
120 #endif// QT_NO_COP
116/*! 121/*!
117 \internal 122 \internal
@@ -122,4 +127,5 @@ QString Network::settingsDir()
122} 127}
123 128
129#ifndef QT_NO_COP
124/*! 130/*!
125 \internal 131 \internal
@@ -135,5 +141,5 @@ QStringList Network::choices(QListBox* lb, const QString& dir)
135 QDir settingsdir(adir); 141 QDir settingsdir(adir);
136 settingsdir.mkdir(adir); 142 settingsdir.mkdir(adir);
137 143
138 QStringList files = settingsdir.entryList("*.conf"); 144 QStringList files = settingsdir.entryList("*.conf");
139 for (QStringList::ConstIterator it=files.begin(); it!=files.end(); ++it ) { 145 for (QStringList::ConstIterator it=files.begin(); it!=files.end(); ++it ) {
@@ -153,5 +159,5 @@ class NetworkServer : public QCopChannel {
153 Q_OBJECT 159 Q_OBJECT
154public: 160public:
155 NetworkServer(QObject* parent) : QCopChannel("QPE/Network",parent) 161 NetworkServer(QObject* parent) : QCopChannel("QPE/Network",parent), wait(0)
156 { 162 {
157 up = FALSE; 163 up = FALSE;
@@ -438,2 +444,3 @@ NetworkInterface* Network::loadPlugin(const QString& type)
438 444
439#include "network.moc" 445#include "network.moc"
446 #endif// QT_NO_COP