diff options
author | obo <obo@openoffice.org> | 2010-06-11 09:56:00 +0200 |
---|---|---|
committer | obo <obo@openoffice.org> | 2010-06-11 09:56:00 +0200 |
commit | 04c13cfa5b517b024da7ecfee9da20032e170020 (patch) | |
tree | a9f4cf1fd335e897000b40907c60ed11070492c6 /cui | |
parent | 8a0704ac525d0a68ff787449fbe8b122817b104d (diff) |
masterfix: #10000# fix ambigous String
Notes
Notes:
split repo tag: components_ooo/DEV300_m82
Diffstat (limited to 'cui')
-rwxr-xr-x | cui/source/dialogs/hyphen.cxx | 2 |
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() ); |