Kaydet (Commit) 7b75b9f2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:simplifybool

Change-Id: I86cec7670db8594a7563e86c6645c480d3f8702c
üst 3accc525
......@@ -264,11 +264,11 @@ public:
Atom AddLanguage( const char* );
bool IsPreload() const
{ return (nFlags & PRELOAD_FLAG) ? true : false; }
{ return (nFlags & PRELOAD_FLAG) != 0; }
bool IsSysResTest() const
{ return (nFlags & NOSYSRESTEST_FLAG) ? false : true; }
{ return (nFlags & NOSYSRESTEST_FLAG) == 0; }
bool IsSrsDefault() const
{ return (nFlags & SRSDEFAULT_FLAG) ? true : false; }
{ return (nFlags & SRSDEFAULT_FLAG) != 0; }
OString ChangeLanguage(const OString & rNewLang);
const std::vector< sal_uInt32 >& GetFallbacks() const
{ return aLangFallbacks; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment