diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:04:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:11:52 +0100 |
commit | a53cb5d7b49c0d4ae298805caea7b0f023612ed2 (patch) | |
tree | 35b9b5a6daf985ae39598626f947df632a67df2d /include/svl/undo.hxx | |
parent | 3c232d2f86f6944a3d86df0d1f710491cee1b064 (diff) |
Use bool
Change-Id: I38f7ec288b907e889c71821cfbfac46a9688ba0c
Diffstat (limited to 'include/svl/undo.hxx')
-rw-r--r-- | include/svl/undo.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/svl/undo.hxx b/include/svl/undo.hxx index 00522c67451c..8da6edf2e977 100644 --- a/include/svl/undo.hxx +++ b/include/svl/undo.hxx @@ -220,11 +220,8 @@ namespace svl class SAL_NO_VTABLE IUndoManager { public: - enum - { - CurrentLevel = true, - TopLevel = false - }; + static bool const CurrentLevel = true; + static bool const TopLevel = false; virtual ~IUndoManager() { }; |