summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-05-27 15:43:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-05-27 17:30:42 +0900
commit5363fe3c36504c37bdc6dcfafd5f71daeae251e8 (patch)
tree6d3e9634868ed599621af66888e7db4be503da3f
parentb5f478f0c4a493354d91c5aee419e4897f7e8e39 (diff)
downloadkoffice-5363fe3c.tar.gz
koffice-5363fe3c.zip
Fixed missing include file guard.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9)
-rw-r--r--filters/olefilters/powerpoint97/pptSlide.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/filters/olefilters/powerpoint97/pptSlide.h b/filters/olefilters/powerpoint97/pptSlide.h
index 4297495e5..adf55710f 100644
--- a/filters/olefilters/powerpoint97/pptSlide.h
+++ b/filters/olefilters/powerpoint97/pptSlide.h
@@ -21,8 +21,8 @@ DESCRIPTION
*/
-//#ifndef PPTSLIDE_H
-//#define PPTSLIDE_H
+#ifndef PPTSLIDE_H
+#define PPTSLIDE_H
#include <kdebug.h>
#include <tqstring.h>
@@ -90,4 +90,4 @@ private:
};
-//#endif
+#endif