summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-13 13:55:13 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-14 15:35:49 -0400
commitd6c7fd2fcc5c9287e1d22d23c6291004f2dec297 (patch)
treeb3264f6d81178282e11c4e3317daa123fd93270a /sc/source/ui/inc
parent51c449bc8765756c23054e9a1a8172603987024b (diff)
Reverse the logic of enable / disable idle flag...
so that true -> enabled and false -> disabled. This is much easier for human brain to process. Change-Id: I51059ee9090610ad8455a072b165860527cd9d50
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/docsh.hxx2
-rw-r--r--sc/source/ui/inc/spelldialog.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/docsh.hxx b/sc/source/ui/inc/docsh.hxx
index ade8dfb64a01..010ea826c362 100644
--- a/sc/source/ui/inc/docsh.hxx
+++ b/sc/source/ui/inc/docsh.hxx
@@ -454,7 +454,7 @@ class SC_DLLPUBLIC ScDocShellModificator
ScDocShell& rDocShell;
ScRefreshTimerProtector aProtector;
sal_Bool bAutoCalcShellDisabled;
- sal_Bool bIdleDisabled;
+ bool bIdleEnabled;
// not implemented
ScDocShellModificator( const ScDocShellModificator& );
diff --git a/sc/source/ui/inc/spelldialog.hxx b/sc/source/ui/inc/spelldialog.hxx
index b0bf42f554aa..4eaf6566f877 100644
--- a/sc/source/ui/inc/spelldialog.hxx
+++ b/sc/source/ui/inc/spelldialog.hxx
@@ -89,7 +89,7 @@ private:
ScDocShell* mpDocShell;
ScDocument* mpDoc;
bool mbNeedNextObj;
- bool mbOldIdleDisabled;
+ bool mbOldIdleEnabled;
};
// ============================================================================