diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 17:02:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 18:45:14 +0100 |
commit | 5169abbac92f30b950ab19c2c8e285c47fb1f0d7 (patch) | |
tree | 12dc79b6a99b1978982f816037a9c1bad23032f0 /vcl/inc/unx/i18n_im.hxx | |
parent | 3e5ff1f8d4da3470fa4016264c9410834a9736d8 (diff) |
bool improvements
Change-Id: I7ec4f5b2e691ec03e9e2c5ca3a004f1e04efbc27
Diffstat (limited to 'vcl/inc/unx/i18n_im.hxx')
-rw-r--r-- | vcl/inc/unx/i18n_im.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/unx/i18n_im.hxx b/vcl/inc/unx/i18n_im.hxx index 0da25d677c78..9f418848d7bc 100644 --- a/vcl/inc/unx/i18n_im.hxx +++ b/vcl/inc/unx/i18n_im.hxx @@ -28,7 +28,7 @@ extern "C" char* GetMethodName( XIMStyle nStyle, char *pBuf, int nBufSize); class VCLPLUG_GEN_PUBLIC SalI18N_InputMethod { - Bool mbUseable; // system supports locale as well as status + bool mbUseable; // system supports locale as well as status // and preedit style ? XIM maMethod; XIMCallback maDestroyCallback; @@ -37,13 +37,13 @@ class VCLPLUG_GEN_PUBLIC SalI18N_InputMethod public: Bool PosixLocale(); - Bool UseMethod() { return mbUseable; } + bool UseMethod() { return mbUseable; } XIM GetMethod() { return maMethod; } void HandleDestroyIM(); - Bool CreateMethod( Display *pDisplay ); + bool CreateMethod( Display *pDisplay ); XIMStyles *GetSupportedStyles() { return mpStyles; } - Bool SetLocale( const char* pLocale = "" ); - Bool FilterEvent( XEvent *pEvent, XLIB_Window window ); + bool SetLocale( const char* pLocale = "" ); + bool FilterEvent( XEvent *pEvent, XLIB_Window window ); SalI18N_InputMethod(); ~SalI18N_InputMethod(); |