summaryrefslogtreecommitdiff
path: root/sc/source/ui/namedlg
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-13 15:28:23 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:20 +0200
commitc6d99137824101199c8bc1300ef927529539aace (patch)
tree7580ca4da5dee73fb8bccb34c878b4444a23f3e6 /sc/source/ui/namedlg
parent8cdcfc7b490135540b0487ca8761321a75a509d9 (diff)
sal_Bool->bool
Change-Id: I2357e07427778fdd7e53aaf964f5879a14937ddd
Diffstat (limited to 'sc/source/ui/namedlg')
-rw-r--r--sc/source/ui/namedlg/namedefdlg.cxx4
-rw-r--r--sc/source/ui/namedlg/namedlg.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/namedlg/namedefdlg.cxx b/sc/source/ui/namedlg/namedefdlg.cxx
index 62e13fd1855a..10a0dfd210ef 100644
--- a/sc/source/ui/namedlg/namedefdlg.cxx
+++ b/sc/source/ui/namedlg/namedefdlg.cxx
@@ -270,12 +270,12 @@ void ScNameDefDlg::GetNewData(OUString& rName, OUString& rScope)
rScope = maScope;
}
-sal_Bool ScNameDefDlg::IsRefInputMode() const
+bool ScNameDefDlg::IsRefInputMode() const
{
return m_pEdRange->IsEnabled();
}
-void ScNameDefDlg::RefInputDone( sal_Bool bForced)
+void ScNameDefDlg::RefInputDone( bool bForced)
{
ScAnyRefDlg::RefInputDone(bForced);
IsNameValid();
diff --git a/sc/source/ui/namedlg/namedlg.cxx b/sc/source/ui/namedlg/namedlg.cxx
index 7b0ea1d3c703..a6c1edfaa0ef 100644
--- a/sc/source/ui/namedlg/namedlg.cxx
+++ b/sc/source/ui/namedlg/namedlg.cxx
@@ -155,12 +155,12 @@ void ScNameDlg::Init()
}
-sal_Bool ScNameDlg::IsRefInputMode() const
+bool ScNameDlg::IsRefInputMode() const
{
return m_pEdAssign->IsEnabled();
}
-void ScNameDlg::RefInputDone( sal_Bool bForced)
+void ScNameDlg::RefInputDone( bool bForced)
{
ScAnyRefDlg::RefInputDone(bForced);
EdModifyHdl(m_pEdAssign);