diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-05-08 14:00:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-05-09 19:14:36 +0900 |
commit | b19ae6acefb3f4f21e2f7e1a7202faee71389fbc (patch) | |
tree | 69412cb45d8e4ebb2a4636753641d5fb73123343 /kpresenter/KPrCommand.h | |
parent | 3cd0cbde8a3af86c8d72253e4da2a79e22cafee7 (diff) | |
download | koffice-b19ae6ac.tar.gz koffice-b19ae6ac.zip |
Workaround to fix issue #32
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 273530af4f44c3c9170cd92ec3f8e9e1b7c5507c)
Diffstat (limited to 'kpresenter/KPrCommand.h')
-rw-r--r-- | kpresenter/KPrCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrCommand.h b/kpresenter/KPrCommand.h index 4ad3497c2..b7d47a890 100644 --- a/kpresenter/KPrCommand.h +++ b/kpresenter/KPrCommand.h @@ -375,12 +375,12 @@ public: // the flags indicate what has changed enum PenConfigChange { - LineBegin = 1, - LineEnd = 2, + BeginLine = 1, + EndLine = 2, Color = 4, Width = 8, Style = 16, - All = LineBegin | LineEnd | Color | Width | Style + All = BeginLine | EndLine | Color | Width | Style }; KoPenCmd( const TQString &_name, TQPtrList<KPrObject> &_objects, Pen _newPen, |