summaryrefslogtreecommitdiffstats
path: root/qt/qdbusvariant.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt/qdbusvariant.h')
-rw-r--r--qt/qdbusvariant.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/qt/qdbusvariant.h b/qt/qdbusvariant.h
index bd18beff..eb7e3aac 100644
--- a/qt/qdbusvariant.h
+++ b/qt/qdbusvariant.h
@@ -1,6 +1,8 @@
/* qdbusvariant.h DBUS variant struct
*
* Copyright (C) 2005 Harald Fernengel <harry@kdevelop.org>
+ * Copyright (C) 2006 Trolltech AS. All rights reserved.
+ * Author: Thiago Macieira <thiago.macieira@trolltech.com>
*
* Licensed under the Academic Free License version 2.1
*
@@ -15,23 +17,21 @@
* GNU General Public License for more details.
*
* 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
+ * along with this program; if not, write to the Free Software Foundation
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef QDBUSVARIANT_H
#define QDBUSVARIANT_H
-#include "dbus/qdbus.h"
-
-#include <QtCore/qmetatype.h>
-#include <QtCore/qstring.h>
-#include <QtCore/qvariant.h>
+#include "qdbusmacros.h"
+#include "qdbustype.h"
+#include <qvariant.h>
struct QDBUS_EXPORT QDBusVariant
{
- QString signature;
+ QDBusType type;
QVariant value;
};
Q_DECLARE_METATYPE(QDBusVariant)