summaryrefslogtreecommitdiff
path: root/include/svtools/svparser.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 17:09:01 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:53 +0100
commite7a86f2d68adb40807deba29a57792a2e3d1f319 (patch)
tree0469ab62ed7bfb46eb93d04e057ba68fe2f3f8e6 /include/svtools/svparser.hxx
parent680a5290a0c7c1caf85641251a40664247e83129 (diff)
Use bool
Change-Id: I2f1c543b106e24ff49f876dbb3d8e94f4ebf03ba
Diffstat (limited to 'include/svtools/svparser.hxx')
-rw-r--r--include/svtools/svparser.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/svparser.hxx b/include/svtools/svparser.hxx
index c43994e8f98c..acc15a5d3485 100644
--- a/include/svtools/svparser.hxx
+++ b/include/svtools/svparser.hxx
@@ -130,7 +130,7 @@ public:
sal_Unicode GetNextChar();
void RereadLookahead();
- inline int IsParserWorking() const { return SVPAR_WORKING == eState; }
+ inline bool IsParserWorking() const { return SVPAR_WORKING == eState; }
Link GetAsynchCallLink() const
{ return STATIC_LINK( this, SvParser, NewDataRead ); }