diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:22 +0100 |
commit | 2fd074b23fad94abcfafa52193c29985789cdb8a (patch) | |
tree | 3ed0b74fef904cfcb1ee364b009bb70601165a52 /starmath/source/dialog.cxx | |
parent | 48fc43550abb5fa62abef5b3fc977e24d0ab56f0 (diff) |
bool improvements
Change-Id: I3f0749caeae8a772e6fb668eefc9d8784e7f22b5
Diffstat (limited to 'starmath/source/dialog.cxx')
-rw-r--r-- | starmath/source/dialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index 3c381c5fa828..7cab5ff2fb61 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -2332,7 +2332,7 @@ bool SmSymDefineDialog::SelectFont(const OUString &rFontName, bool bApplyFont) bRet = true; aSymbolDisplay.SetSymbol( aCharsetDisplay.GetSelectCharacter(), aCharsetDisplay.GetFont() ); } - bRet = sal_True; + bRet = true; } else aFonts.SetNoSelection(); @@ -2362,7 +2362,7 @@ bool SmSymDefineDialog::SelectStyle(const OUString &rStyleName, bool bApplyFont) bRet = true; aSymbolDisplay.SetSymbol( aCharsetDisplay.GetSelectCharacter(), aCharsetDisplay.GetFont() ); } - bRet = sal_True; + bRet = true; } else aStyles.SetText(OUString()); |