diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-15 14:52:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:17 +0100 |
commit | 07d3807e999445c87553e7a6c5876d07ca431737 (patch) | |
tree | d3bf3fa3c2ea9f11961144d8f7c9889405426abe /unodevtools | |
parent | 824c59a38d0e5d3a7f65193e4b4087cf1e0fe64f (diff) |
codemaker: sal_Bool -> bool
Change-Id: I2cacac2aa7e48b3b9d8d060137d5c6d6f1d06b3f
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/cppcompskeleton.cxx | 4 | ||||
-rw-r--r-- | unodevtools/source/skeletonmaker/javacompskeleton.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx index 3228a8c065c9..5ce7501634d8 100644 --- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx @@ -1060,7 +1060,7 @@ void generateSkeleton(ProgramOptions const & options, if ( !standardout && pofs && ((std::ofstream*)pofs)->is_open()) { ((std::ofstream*)pofs)->close(); delete pofs; - OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, sal_False)); + OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, false)); } } catch (CannotDumpException & e) { std::cerr << "ERROR: " << e.getMessage() << "\n"; @@ -1223,7 +1223,7 @@ void generateCalcAddin(ProgramOptions const & options, if ( !standardout && pofs && ((std::ofstream*)pofs)->is_open()) { ((std::ofstream*)pofs)->close(); delete pofs; - OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, sal_False)); + OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, false)); } } catch (CannotDumpException & e) { std::cerr << "ERROR: " << e.getMessage() << "\n"; diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx index 0f4ef7613501..1fd478b8d0ab 100644 --- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx @@ -915,7 +915,7 @@ void generateSkeleton(ProgramOptions const & options, if ( !standardout && pofs && ((std::ofstream*)pofs)->is_open()) { ((std::ofstream*)pofs)->close(); delete pofs; - OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, sal_False)); + OSL_VERIFY(makeValidTypeFile(compFileName, tmpFileName, false)); } } catch (CannotDumpException & e) { std::cerr << "ERROR: " << e.getMessage() << "\n"; |