dbus/qt/examples Makefile.am, 1.3, 1.4 complexpong.cpp, 1.1,
1.2 dbus.cpp, 1.4, NONE pong.cpp, 1.1, 1.2
Thiago J. Macieira
thiago at kemper.freedesktop.org
Mon Jun 5 11:13:09 PDT 2006
- Previous message: dbus/qt/dbus qdbus.h, NONE, 1.1 qdbusabstractadaptor.h, NONE,
1.1 qdbusabstractadaptor_p.h, NONE,
1.1 qdbusabstractinterface.h, NONE,
1.1 qdbusabstractinterface_p.h, NONE, 1.1 qdbusbus.h, NONE,
1.1 qdbusconnection.h, NONE, 1.1 qdbusconnection_p.h, NONE,
1.1 qdbuserror.h, NONE, 1.1 qdbusinterface.h, NONE,
1.1 qdbusinterface_p.h, NONE, 1.1 qdbusintrospection_p.h, NONE,
1.1 qdbusmacros.h, NONE, 1.1 qdbusmarshall_p.h, NONE,
1.1 qdbusmessage.h, NONE, 1.1 qdbusmessage_p.h, NONE,
1.1 qdbusmetaobject_p.h, NONE, 1.1 qdbusreply.h, NONE,
1.1 qdbusserver.h, NONE, 1.1 qdbustype_p.h, NONE,
1.1 qdbustypehelper_p.h, NONE, 1.1 qdbusutil.h, NONE,
1.1 qdbusxmlparser_p.h, NONE, 1.1
- Next message: dbus/qt/tools Makefile.am, 1.1, 1.2 dbus.cpp, NONE,
1.1 dbuscpp2xml.cpp, 1.1, 1.2 dbusidl2cpp.cpp, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/dbus/dbus/qt/examples
In directory kemper:/tmp/cvs-serv17133/qt/examples
Modified Files:
Makefile.am complexpong.cpp pong.cpp
Removed Files:
dbus.cpp
Log Message:
* qt/dbus: Add directory. I had forgotten to add this
yesterday after the move...
* qt/examples/Makefile.am:
* qt/examples/dbus.cpp: Moved to qt/tools/dbus.cpp.
* qt/tools/Makefile.am:
* qt/tools/dbus.cpp: Moved from qt/examples/dbus.cpp.
Added feature to get and set properties.
Added validation of service, object path and interface names.
* qt/tools/dbusidl2cpp.cpp: Two new features:
1) Allow specifying both the header and the source file names,
by separating them with a colon.
2) Don't write an interface output if the -p switch wasn't
given, but the -a was.
* qt/src/*: Fix usage of Iterators and ConstIterators.
Fix shadowing of variables by other variables (-Wshadow).
Fix keyword-cleanliness in headers.
Fix ASCII-cast (QLatin1String, QLatin1Char).
Fix validation of member names.
Add extra checking of introspection data during XML parsing.
Various bug fixes.
Index: Makefile.am
===================================================================
RCS file: /cvs/dbus/dbus/qt/examples/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am 4 Jun 2006 15:52:05 -0000 1.3
+++ Makefile.am 5 Jun 2006 18:13:07 -0000 1.4
@@ -16,9 +16,8 @@
endif
-noinst_PROGRAMS = hello listnames dbus ping pong complexping complexpong $(CHAT)
+noinst_PROGRAMS = hello listnames ping pong complexping complexpong $(CHAT)
hello_SOURCES = hello.cpp
-dbus_SOURCES = dbus.cpp
listnames_SOURCES = listnames.cpp
ping_SOURCES = ping.cpp
Index: complexpong.cpp
===================================================================
RCS file: /cvs/dbus/dbus/qt/examples/complexpong.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- complexpong.cpp 28 Mar 2006 19:16:35 -0000 1.1
+++ complexpong.cpp 5 Jun 2006 18:13:07 -0000 1.2
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <dbus/qdbus.h>
#include <QtCore/QCoreApplication>
--- dbus.cpp DELETED ---
Index: pong.cpp
===================================================================
RCS file: /cvs/dbus/dbus/qt/examples/pong.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pong.cpp 28 Mar 2006 19:16:35 -0000 1.1
+++ pong.cpp 5 Jun 2006 18:13:07 -0000 1.2
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <dbus/qdbus.h>
#include <QtCore/QCoreApplication>
- Previous message: dbus/qt/dbus qdbus.h, NONE, 1.1 qdbusabstractadaptor.h, NONE,
1.1 qdbusabstractadaptor_p.h, NONE,
1.1 qdbusabstractinterface.h, NONE,
1.1 qdbusabstractinterface_p.h, NONE, 1.1 qdbusbus.h, NONE,
1.1 qdbusconnection.h, NONE, 1.1 qdbusconnection_p.h, NONE,
1.1 qdbuserror.h, NONE, 1.1 qdbusinterface.h, NONE,
1.1 qdbusinterface_p.h, NONE, 1.1 qdbusintrospection_p.h, NONE,
1.1 qdbusmacros.h, NONE, 1.1 qdbusmarshall_p.h, NONE,
1.1 qdbusmessage.h, NONE, 1.1 qdbusmessage_p.h, NONE,
1.1 qdbusmetaobject_p.h, NONE, 1.1 qdbusreply.h, NONE,
1.1 qdbusserver.h, NONE, 1.1 qdbustype_p.h, NONE,
1.1 qdbustypehelper_p.h, NONE, 1.1 qdbusutil.h, NONE,
1.1 qdbusxmlparser_p.h, NONE, 1.1
- Next message: dbus/qt/tools Makefile.am, 1.1, 1.2 dbus.cpp, NONE,
1.1 dbuscpp2xml.cpp, 1.1, 1.2 dbusidl2cpp.cpp, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dbus-commit
mailing list