summaryrefslogtreecommitdiffstats
path: root/tdeioslave
diff options
context:
space:
mode:
authorJakub Stachowski <qbast@go2.pl>2008-05-06 18:47:59 +0000
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-23 22:44:52 +0900
commit738d19c1eb8dc042f0f5f9236e1864971f8a2c43 (patch)
treed5d8a72d47e5e88c92030c09cc1c3123706b99da /tdeioslave
parent4aacbe5b9ef8a4188b8196d261e06ca2a7ce25e3 (diff)
downloadtdepim-738d19c1eb8dc042f0f5f9236e1864971f8a2c43.tar.gz
tdepim-738d19c1eb8dc042f0f5f9236e1864971f8a2c43.zip
Use static const instead of #define
Cherry-picked from: c247b0607d3315a43f21c417ef261ab8eb2979e1 Signed-off-by: Luke Dashjr <luke-jr+git@utopios.org>
Diffstat (limited to 'tdeioslave')
-rw-r--r--tdeioslave/imap4/imap4.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeioslave/imap4/imap4.cc b/tdeioslave/imap4/imap4.cc
index a50ab2f0f..a572235e7 100644
--- a/tdeioslave/imap4/imap4.cc
+++ b/tdeioslave/imap4/imap4.cc
@@ -95,8 +95,8 @@ extern "C" {
#define IMAP_PROTOCOL "imap"
#define IMAP_SSL_PROTOCOL "imaps"
-#define IMAP_PORT 143
-#define IMAPS_PORT 993
+static const int ImapPort = 143;
+static const int ImapsPort = 993;
using namespace TDEIO;
@@ -634,7 +634,7 @@ IMAP4Protocol::setHost (const TQString & _host, int _port,
closeConnection ();
myHost = _host;
if (_port == 0)
- myPort = (mySSL) ? IMAPS_PORT : IMAP_PORT;
+ myPort = (mySSL) ? ImapsPort : ImapPort;
else
myPort = _port;
myUser = _user;