diff options
author | Ingo Klöcker <kloecker@kde.org> | 2008-05-24 14:15:58 +0000 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-23 22:44:53 +0900 |
commit | 147bb5982f8f760c470566370b988dfc06ce7d31 (patch) | |
tree | 8c78115e59c5576dde341aa544a471f3c581a405 /tdeioslave | |
parent | 738d19c1eb8dc042f0f5f9236e1864971f8a2c43 (diff) | |
download | tdepim-147bb5982f8f760c470566370b988dfc06ce7d31.tar.gz tdepim-147bb5982f8f760c470566370b988dfc06ce7d31.zip |
The use of the static keyword is deprecated when declaring objects in a namespace scope....
- The C++ Standard, ISO/IEC 14882:1998, section 7.3.1.1 paragraph 2
Cherry-picked from: a16596e1c16c3d5509d6d3f37ed9287ea61ef9df
Signed-off-by: Luke Dashjr <luke-jr+git@utopios.org>
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/imap4/imap4.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeioslave/imap4/imap4.cc b/tdeioslave/imap4/imap4.cc index a572235e7..8ce20769c 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" -static const int ImapPort = 143; -static const int ImapsPort = 993; +const int ImapPort = 143; +const int ImapsPort = 993; using namespace TDEIO; |