diff --git a/src/SkinChooser.h b/src/SkinChooser.h index 135f8f4..25f262b 100644 --- a/src/SkinChooser.h +++ b/src/SkinChooser.h @@ -13,6 +13,8 @@ * GNU General Public License for more details. */ +#ifndef __SKINCHOOSER__ +#define __SKINCHOOSER__ #include #include @@ -53,3 +55,4 @@ class SkinChooser : public QDialog }; +#endif diff --git a/src/application.h b/src/application.h index 374c1ca..2bbc4f5 100644 --- a/src/application.h +++ b/src/application.h @@ -13,6 +13,9 @@ * GNU General Public License for more details. */ +#ifndef __APPLICATION__ +#define __APPLICATION__ + #include class XClient; @@ -54,3 +57,5 @@ class Application : public QApplication private: bool m_timemode_reverse; }; + +#endif