diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-13 13:55:13 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-14 15:35:49 -0400 |
commit | d6c7fd2fcc5c9287e1d22d23c6291004f2dec297 (patch) | |
tree | b3264f6d81178282e11c4e3317daa123fd93270a /sc/source/ui/inc/spelldialog.hxx | |
parent | 51c449bc8765756c23054e9a1a8172603987024b (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/spelldialog.hxx')
-rw-r--r-- | sc/source/ui/inc/spelldialog.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; // ============================================================================ |