OTHER: guard headerfiles against multiple inclusion

This commit is contained in:
Thomas Frauendorfer 2009-08-29 02:14:07 +02:00
parent ff3423c85e
commit a95dc40ff3
2 changed files with 8 additions and 0 deletions

View file

@ -13,6 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#ifndef __SKINCHOOSER__
#define __SKINCHOOSER__
#include <QListWidget> #include <QListWidget>
#include <QDialog> #include <QDialog>
@ -53,3 +55,4 @@ class SkinChooser : public QDialog
}; };
#endif

View file

@ -13,6 +13,9 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#ifndef __APPLICATION__
#define __APPLICATION__
#include <QApplication> #include <QApplication>
class XClient; class XClient;
@ -54,3 +57,5 @@ class Application : public QApplication
private: private:
bool m_timemode_reverse; bool m_timemode_reverse;
}; };
#endif