From 633d352fb9979234d493e84ae50f4b0b6f3701e0 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Sat, 26 Feb 2011 18:04:23 +0100 Subject: [PATCH] WaE: picky about comparison between signed and unsigned --- sc/source/ui/docshell/autostyl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/ui/docshell/autostyl.cxx b/sc/source/ui/docshell/autostyl.cxx index 03d39a214651..cc00106a4a2e 100644 --- a/sc/source/ui/docshell/autostyl.cxx +++ b/sc/source/ui/docshell/autostyl.cxx @@ -175,7 +175,7 @@ void ScAutoStyleList::StartTimer( ULONG nNow ) // Sekunden { // ersten Eintrag mit Timeout != 0 suchen boost::ptr_vector::iterator iter = std::find_if(aEntries.begin(),aEntries.end(), - boost::bind(&ScAutoStyleData::nTimeout,_1) != 0); + boost::bind(&ScAutoStyleData::nTimeout,_1) != static_cast(0)); if (iter != aEntries.end()) {