summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorStefan Heinemann <stefan.heinemann@codedump.ch>2015-09-25 13:06:09 +0200
committerMichael Stahl <mstahl@redhat.com>2015-09-29 18:33:40 +0000
commitc50eb68af3096645246a77259bb3d1cc70eb6b63 (patch)
treea3f9442fa2d2c13464d1623f8bcf772b27426e72 /filter
parentJewish Calendar: updated URL of borrowed code (diff)
downloadcore-c50eb68af3096645246a77259bb3d1cc70eb6b63.tar.gz
core-c50eb68af3096645246a77259bb3d1cc70eb6b63.zip
Renamed wrongly prefixed boolean variables
Fixed tdf#94269 Change-Id: I63109cc4e095bad680d7637a065080ea368860ae Reviewed-on: https://gerrit.libreoffice.org/18851 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/ipcx/ipcx.cxx6
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.cxx10
2 files changed, 8 insertions, 8 deletions
diff --git a/filter/source/graphicfilter/ipcx/ipcx.cxx b/filter/source/graphicfilter/ipcx/ipcx.cxx
index f89bc7c4b72b..c9c52774f8a2 100644
--- a/filter/source/graphicfilter/ipcx/ipcx.cxx
+++ b/filter/source/graphicfilter/ipcx/ipcx.cxx
@@ -412,10 +412,10 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool SAL_CALL
GraphicImport( SvStream & rStream, Graphic & rGraphic, FilterConfigItem* )
{
PCXReader aPCXReader(rStream);
- bool nRetValue = aPCXReader.ReadPCX(rGraphic);
- if ( !nRetValue )
+ bool bRetValue = aPCXReader.ReadPCX(rGraphic);
+ if ( !bRetValue )
rStream.SetError( SVSTREAM_FILEFORMAT_ERROR );
- return nRetValue;
+ return bRetValue;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
index f2d994fafcb7..1d6858ef0a0d 100644
--- a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
+++ b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
@@ -986,8 +986,8 @@ void XMLFilterSettingsDialog::onClose()
bool XMLFilterSettingsDialog::Notify( NotifyEvent& rNEvt )
{
// Because of tab control first call the base class.
- bool nRet = ModelessDialog::Notify( rNEvt );
- if ( !nRet )
+ bool bRet = ModelessDialog::Notify( rNEvt );
+ if ( !bRet )
{
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -1004,7 +1004,7 @@ bool XMLFilterSettingsDialog::Notify( NotifyEvent& rNEvt )
}
}
- return nRet;
+ return bRet;
}
void XMLFilterSettingsDialog::disposeFilterList()
@@ -1386,12 +1386,12 @@ VCL_BUILDER_FACTORY(SvxPathControl)
bool SvxPathControl::Notify(NotifyEvent& rNEvt)
{
- bool nRet = Window::Notify(rNEvt);
+ bool bRet = Window::Notify(rNEvt);
if ( m_pFocusCtrl && rNEvt.GetWindow() != m_pFocusCtrl && rNEvt.GetType() == MouseNotifyEvent::GETFOCUS )
m_pFocusCtrl->GrabFocus();
- return nRet;
+ return bRet;
}
XMLFilterListBox::XMLFilterListBox(Window* pParent, SvxPathControl* pPathControl)