summaryrefslogtreecommitdiff
path: root/noncore
authorandyq <andyq>2002-10-16 21:25:55 (UTC)
committer andyq <andyq>2002-10-16 21:25:55 (UTC)
commitfd6aee0559a2f2f68b14f9913ebbf482c2561572 (patch) (unidiff)
treeb692ed8532d95b712b5b414477c3b96a3f99c5fe /noncore
parentbf58f7bc221ba10f6681d9a1a5193bd208d9920e (diff)
downloadopie-fd6aee0559a2f2f68b14f9913ebbf482c2561572.zip
opie-fd6aee0559a2f2f68b14f9913ebbf482c2561572.tar.gz
opie-fd6aee0559a2f2f68b14f9913ebbf482c2561572.tar.bz2
Added active member specify if server is active or not (commented out)
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/server.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/server.h b/noncore/settings/aqpkg/server.h
index 8f8d384..5f83f75 100644
--- a/noncore/settings/aqpkg/server.h
+++ b/noncore/settings/aqpkg/server.h
@@ -45,5 +45,7 @@ public:
45 vector<Package> &getPackageList(); 45 vector<Package> &getPackageList();
46 46 bool isServerActive() { return active; }
47
47 void setServerName( const QString &name ) { serverName = name; } 48 void setServerName( const QString &name ) { serverName = name; }
48 void setServerUrl( const QString &url ) { serverUrl = url; } 49 void setServerUrl( const QString &url ) { serverUrl = url; }
50 void setActive( bool val ) { active = val; }
49 QString &getServerName() { return serverName; } 51 QString &getServerName() { return serverName; }
@@ -57,2 +59,3 @@ private:
57 QString packageFile; 59 QString packageFile;
60 bool active;
58 61