summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 15:38:12 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 15:38:12 +0000
commitafc31c11133a1a2fc5b48b55f61ddd038d777b92 (patch)
treecc94a427930d42ae913b3a859e0cd8c713f5c800 /unotools
parentafa010489a6802d922a18d2b2fa1550dac955296 (diff)
#i100000# switch off C4748 warning (wntmsci11)
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/i18n/textsearch.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/unotools/source/i18n/textsearch.cxx b/unotools/source/i18n/textsearch.cxx
index dd01d03ebadb..7b0cca5a8ccd 100644
--- a/unotools/source/i18n/textsearch.cxx
+++ b/unotools/source/i18n/textsearch.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: textsearch.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: vg $ $Date: 2007-12-05 16:41:58 $
+ * last change: $Author: vg $ $Date: 2007-12-07 16:38:12 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -238,6 +238,8 @@ TextSearch::~TextSearch()
*/
#if defined _MSC_VER
#pragma optimize("", off)
+#pragma warning(push)
+#pragma warning(disable: 4748)
#endif
int TextSearch::SearchFrwrd( const String & rStr, xub_StrLen* pStart,
xub_StrLen* pEnde, SearchResult* pRes )
@@ -400,6 +402,7 @@ void TextSearch::ReplaceBackReferences( String& rReplaceStr, const String &rStr,
#if defined _MSC_VER
#pragma optimize("", on)
+#pragma warning(pop)
#endif
// ............................................................................