diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-04 00:23:52 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-04 00:24:51 +1100 |
commit | 8db902785ed40ef388218bd5068f14f5d4bedd69 (patch) | |
tree | 08a02ad07d02fce16bd37b6c02503239483911c9 /vcl/source/window | |
parent | 4a2824e72aae407f5f2a86e6ef45278ef864d437 (diff) |
tdf#94269 Replace "n" prefix for bool variables with "b"
Change-Id: I8999dc2701010424ea4d2504e99ed429030d7d4e
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/winproc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index e2520c9cbe33..4fb5c9ce4645 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1213,7 +1213,7 @@ static bool ImplHandleEndExtTextInput( vcl::Window* /* pWindow */ ) { ImplSVData* pSVData = ImplGetSVData(); vcl::Window* pChild = pSVData->maWinData.mpExtTextInputWin; - bool nRet = false; + bool bRet = false; if ( pChild ) { @@ -1230,10 +1230,10 @@ static bool ImplHandleEndExtTextInput( vcl::Window* /* pWindow */ ) delete [] pWinData->mpExtOldAttrAry; pWinData->mpExtOldAttrAry = nullptr; } - nRet = !ImplCallCommand( pChild, CommandEventId::EndExtTextInput ); + bRet = !ImplCallCommand( pChild, CommandEventId::EndExtTextInput ); } - return nRet; + return bRet; } static void ImplHandleExtTextInputPos( vcl::Window* pWindow, |