summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorobo <obo@openoffice.org>2010-06-11 09:56:00 +0200
committerobo <obo@openoffice.org>2010-06-11 09:56:00 +0200
commit04c13cfa5b517b024da7ecfee9da20032e170020 (patch)
treea9f4cf1fd335e897000b40907c60ed11070492c6 /cui/source
parent8a0704ac525d0a68ff787449fbe8b122817b104d (diff)
masterfix: #10000# fix ambigous String
Notes
split repo tag: components_ooo/DEV300_m82
Diffstat (limited to 'cui/source')
-rwxr-xr-xcui/source/dialogs/hyphen.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx
index 33a17d05ab0e..16026aaff6d1 100755
--- a/cui/source/dialogs/hyphen.cxx
+++ b/cui/source/dialogs/hyphen.cxx
@@ -291,7 +291,7 @@ String SvxHyphenWordDialog_Impl::EraseUnusableHyphens_Impl(
DBG_ASSERT(rxPossHyph.is(), "missing possible hyphens");
if (rxPossHyph.is())
{
- DBG_ASSERT( aActWord == rxPossHyph->getWord(), "word mismatch" );
+ DBG_ASSERT( aActWord == String( rxPossHyph->getWord() ), "word mismatch" );
aTxt = String( rxPossHyph->getPossibleHyphens() );