diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 14:34:24 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 14:34:24 +0000 |
commit | 8ca91ee49c4ebd0c9003e2758c76501b4f52a477 (patch) | |
tree | 8afb6aa926bab0bfb2ff722937b0367c62c24af9 /sd | |
parent | 2740a4f0c2937c082e30fe1f468b9b73ae675aa2 (diff) |
INTEGRATION: CWS impress122 (1.14.52); FILE MERGED
2007/06/08 04:05:57 liyuan 1.14.52.1: #i71063
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/Outliner.hxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sd/inc/Outliner.hxx b/sd/inc/Outliner.hxx index 28b5623df1e8..4127548d7a84 100644 --- a/sd/inc/Outliner.hxx +++ b/sd/inc/Outliner.hxx @@ -4,9 +4,9 @@ * * $RCSfile: Outliner.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: rt $ $Date: 2007-04-03 15:34:53 $ + * last change: $Author: hr $ $Date: 2007-06-27 15:34:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -198,6 +198,10 @@ public: */ void HandleOutsideChange (ChangeHint eHint); + int GetIgnoreCurrentPageChangesLevel() const { return mnIgnoreCurrentPageChangesLevel; }; + void IncreIgnoreCurrentPageChangesLevel() { mnIgnoreCurrentPageChangesLevel++; }; + void DecreIgnoreCurrentPageChangesLevel() { mnIgnoreCurrentPageChangesLevel--; }; + private: class Implementation; ::std::auto_ptr<Implementation> mpImpl; @@ -220,6 +224,11 @@ private: */ INT16 mnConversionLanguage; + /** While the value of this flag is greater than 0 changes of the current page + do not lead to selecting the corresponding text in the outliner. + */ + int mnIgnoreCurrentPageChangesLevel; + /// Specifies whether the search string has been found so far. bool mbStringFound; |