From 147bb5982f8f760c470566370b988dfc06ce7d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Sat, 24 May 2008 14:15:58 +0000 Subject: [PATCH] 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 --- tdeioslave/imap4/imap4.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdeioslave/imap4/imap4.cc b/tdeioslave/imap4/imap4.cc index a572235e..8ce20769 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;