From a16732d63c69c6eb915bc9555d3671d2aa585d66 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Wed, 2 Aug 2006 12:11:24 +0000 Subject: [PATCH] fix GCC build error "explicit qualification in declaration of MLStorage::..." svn path=/trunk/; revision=23415 --- reactos/base/shell/explorer/utility/xmlstorage.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/base/shell/explorer/utility/xmlstorage.cpp b/reactos/base/shell/explorer/utility/xmlstorage.cpp index 6d4013b8676..3c08d7c3b06 100644 --- a/reactos/base/shell/explorer/utility/xmlstorage.cpp +++ b/reactos/base/shell/explorer/utility/xmlstorage.cpp @@ -49,11 +49,11 @@ namespace XMLStorage { // work around GCC's wide string constant bug #ifdef __GNUC__ -const LPCXSSTR XMLStorage::XS_EMPTY = XS_EMPTY_STR; -const LPCXSSTR XMLStorage::XS_TRUE = XS_TRUE_STR; -const LPCXSSTR XMLStorage::XS_FALSE = XS_FALSE_STR; -const LPCXSSTR XMLStorage::XS_INTFMT = XS_INTFMT_STR; -const LPCXSSTR XMLStorage::XS_FLOATFMT = XS_FLOATFMT_STR; +const LPCXSSTR XS_EMPTY = XS_EMPTY_STR; +const LPCXSSTR XS_TRUE = XS_TRUE_STR; +const LPCXSSTR XS_FALSE = XS_FALSE_STR; +const LPCXSSTR XS_INTFMT = XS_INTFMT_STR; +const LPCXSSTR XS_FLOATFMT = XS_FLOATFMT_STR; #endif