summaryrefslogtreecommitdiff
path: root/include/tools/wldcrd.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-06-29 23:57:38 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-06-30 04:58:49 +0000
commit710f41b7aec8e7d35a0da8be332aa289f98942af (patch)
treeb894ef2d3f06a63a85f423b2713a654ea57f9c69 /include/tools/wldcrd.hxx
parent1ca3beae12a7f222c987481e07a544845fc9fd46 (diff)
Clean String and sal_Bool in tools
Change-Id: I6a92196f33d7a5278c7dcc426112e9c56d582655 Reviewed-on: https://gerrit.libreoffice.org/4627 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'include/tools/wldcrd.hxx')
-rw-r--r--include/tools/wldcrd.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/wldcrd.hxx b/include/tools/wldcrd.hxx
index 8991b8882474..9b143b7ae91b 100644
--- a/include/tools/wldcrd.hxx
+++ b/include/tools/wldcrd.hxx
@@ -20,8 +20,8 @@
#define _WLDCRD_HXX
#include "tools/toolsdllapi.h"
-#include <tools/string.hxx>
#include <osl/thread.h>
+#include <rtl/ustring.hxx>
class TOOLS_DLLPUBLIC WildCard
{
@@ -54,7 +54,7 @@ public:
aWildString = OUStringToOString(rString, osl_getThreadTextEncoding());
}
- sal_Bool Matches( const String& rStr ) const;
+ bool Matches( const OUString& rStr ) const;
};
#endif