Better time formatting by using an explicit format
[quassel.git] / src / uisupport / icon.h
index 2586f82..f186543 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-2012 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #ifndef ICON_H_
 #define ICON_H_
 
+#ifndef HAVE_KDE
+
 #include <QIcon>
 
 /// A very thin wrapper around QIcon
  *  The overloaded ctor uses IconLoader to locate an icon with this basename in the current theme
  *  or in Qt Resources.
  */
-class Icon : public QIcon {
-
-  public:
+class Icon : public QIcon
+{
+public:
     Icon();
     explicit Icon(const QString &iconName);
-    explicit Icon(const QIconcopy);
+    explicit Icon(const QIcon &copy);
 
-    Iconoperator=(const Icon &other);
+    Icon &operator=(const Icon &other);
 };
 
+
+#else /* HAVE_KDE */
+#include <KIcon>
+class Icon : public KIcon
+{
+public:
+    inline Icon() : KIcon() {};
+    inline explicit Icon(const QString &iconName) : KIcon(iconName) {};
+    inline explicit Icon(const QIcon &copy) : KIcon(copy) {};
+};
+
+
+#endif /* HAVE_KDE */
+
 #endif