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 23:13:00 +0900 |
commit | 8a072e81fe2f426b84aa1ebb67b08daad20e5d7c (patch) | |
tree | aaf2f7956fcae998d1b41efe4c4a1711a7815bdb /tdeioslave | |
parent | 17fd5b55320e30d7b9c233078ac66422fbcf4bc3 (diff) | |
download | tdepim-8a072e81fe2f426b84aa1ebb67b08daad20e5d7c.tar.gz tdepim-8a072e81fe2f426b84aa1ebb67b08daad20e5d7c.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>
(cherry picked from commit 147bb5982f8f760c470566370b988dfc06ce7d31)
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; |