Branch: r14.0.x

d2cf7fa5 2011-04-21 18:56:57 tpearson
Add dbus-1-tqt to this SVN tree
Please keep it in sync with the master at svn.trinitydesktop.org
This is revision 167 from that source


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1228687 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A AUTHORS
A CMakeLists.txt
A COPYING
A COPYING.AFL
A COPYING.GPL
A ChangeLog
A ConfigureChecks.cmake
A INSTALL
A NEWS
A README
A TODO
A dbus-1-tqt.pc.cmake
A stamp-h.in
A subdirs
A tools/dbusxml2qt3/LICENSE
A tools/dbusxml2qt3/classgen.cpp
A tools/dbusxml2qt3/classgen.h
A tools/dbusxml2qt3/main.cpp
A tools/dbusxml2qt3/methodgen.cpp
A tools/dbusxml2qt3/methodgen.h
A tqdbusatomic.h
A tqdbusconnection.cpp
A tqdbusconnection.h
A tqdbusconnection_p.h
A tqdbusdata.cpp
A tqdbusdata.h
A tqdbusdataconverter.cpp
A tqdbusdataconverter.h
A tqdbusdatalist.cpp
A tqdbusdatalist.h
A tqdbusdatamap.h
A tqdbuserror.cpp
A tqdbuserror.h
A tqdbusintegrator.cpp
A tqdbusmacros.h
A tqdbusmarshall.cpp
A tqdbusmarshall.h
A tqdbusmessage.cpp
A tqdbusmessage.h
A tqdbusmessage_p.h
A tqdbusobject.h
A tqdbusobjectpath.cpp
A tqdbusobjectpath.h
A tqdbusproxy.cpp
A tqdbusproxy.h
A tqdbusserver.cpp
A tqdbusserver.h
A tqdbusvariant.h
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..d4f9f81
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,5 @@
+Harald Fernengel <harry@...>
+	Original developer
+
+Kevin Krammer <kevin.krammer@...>
+	Initial port, current maintainer
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..9bfb0e4
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,103 @@
+#################################################
+#
+#  (C) 2010-2011 Serghei Amelian
+#  serghei (DOT) amelian (AT) gmail.com
+#
+#  Improvements and feedback are welcome
+#
+#  This file is released under GPL >= 2
+#
+#################################################
+
+project( dbus-1-tqt )
+
+
+##### cmake setup ###############################
+
+cmake_minimum_required( VERSION 2.8 )
+
+include( FindPkgConfig )
+include( CheckCXXSourceCompiles )
+
+set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
+include( TDEMacros )
+include( ConfigureChecks.cmake )
+
+
+##### install paths setup #######################
+
+tde_setup_install_path( EXEC_INSTALL_PREFIX   "${CMAKE_INSTALL_PREFIX}" )
+tde_setup_install_path( BIN_INSTALL_DIR       "${EXEC_INSTALL_PREFIX}/bin"  )
+tde_setup_install_path( LIB_INSTALL_DIR       "${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}" )
+tde_setup_install_path( INCLUDE_INSTALL_DIR   "${CMAKE_INSTALL_PREFIX}/include/${CMAKE_PROJECT_NAME}" )
+tde_setup_install_path( PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" )
+
+
+##### install headers ###########################
+
+install( FILES
+    tqdbuserror.h tqdbusmessage.h tqdbusconnection.h
+    tqdbusvariant.h tqdbusobject.h tqdbusproxy.h
+    tqdbusmacros.h tqdbusdata.h tqdbusdatalist.h
+    tqdbusdatamap.h tqdbusobjectpath.h tqdbusdataconverter.h
+  DESTINATION ${INCLUDE_INSTALL_DIR} )
+
+
+##### install other data ########################
+
+##### write pkgconfig file ######################
+
+string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_EXEC_PREFIX ${EXEC_INSTALL_PREFIX} )
+string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_INCLUDE_DIR ${INCLUDE_INSTALL_DIR} )
+string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_LIB_DIR ${LIB_INSTALL_DIR} )
+configure_file( dbus-1-tqt.pc.cmake dbus-1-tqt.pc @ONLY )
+install( FILES ${CMAKE_CURRENT_BINARY_DIR}/dbus-1-tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} )
+
+
+##### build setup ###############################
+
+set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include tqt.h" )
+set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
+
+add_definitions(
+  -DDBUS_COMPILATION
+  -DQT_THREAD_SUPPORT
+  ${TQT_CFLAGS_OTHER}
+)
+
+include_directories(
+  ${CMAKE_CURRENT_BINARY_DIR}
+  ${CMAKE_CURRENT_SOURCE_DIR}
+  ${TQT_INCLUDE_DIRS}
+  ${DBUS_INCLUDE_DIRS}
+)
+
+link_directories(
+  ${TQT_LIBRARY_DIRS}
+)
+
+
+##### dbus-1-tqt (shared) #########################
+
+tde_add_library( dbus-1-tqt SHARED AUTOMOC
+  SOURCES ${dbus_tqt_MOCS}
+    tqdbusconnection.cpp tqdbuserror.cpp tqdbusintegrator.cpp
+    tqdbusmarshall.cpp tqdbusmessage.cpp tqdbusserver.cpp
+    tqdbusproxy.cpp tqdbusdata.cpp tqdbusdatalist.cpp
+    tqdbusobjectpath.cpp tqdbusdataconverter.cpp
+  VERSION 0.0.0
+  LINK ${TQT_LIBRARIES} ${DBUS_LIBRARIES}
+  DESTINATION ${LIB_INSTALL_DIR}
+)
+
+
+##### dbusxml2qt3 (executable) ##################
+
+tde_add_executable( dbusxml2qt3
+  SOURCES
+    tools/dbusxml2qt3/classgen.cpp
+    tools/dbusxml2qt3/main.cpp
+    tools/dbusxml2qt3/methodgen.cpp
+  LINK ${TQT_LIBRARIES}
+  DESTINATION ${BIN_INSTALL_DIR}
+)
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..ec5ecb0
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,10 @@
+The software of this project is distributed under the terms of three
+licenses.
+
+The Qt3 D-Bus bindings library is distributed under the terms of
+the Academic Free License version 2.1 (see COPYING.AFL for details)
+as well as the GNU Public License 2.1 (or at your option any later version,
+see COPYING.GPL for details)
+
+The binding generator tool dbusxml2q3 is distributed under the terms
+of the MIT licence (see tools/dbusxml2qt3/LICENSE for details)
diff --git a/COPYING.AFL b/COPYING.AFL
new file mode 100644
index 0000000..7c180c0
--- /dev/null
+++ b/COPYING.AFL
@@ -0,0 +1,54 @@
+# Larry Rosen has ceased to use or recommend any version
+# of the Academic Free License below version 2.1
+
+The Academic Free License
+v. 2.1
+
+This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work:
+
+Licensed under the Academic Free License version 2.1
+
+1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:
+
+a) to reproduce the Original Work in copies;
+
+b) to prepare derivative works ("Derivative Works") based upon the Original Work;
+
+c) to distribute copies of the Original Work and Derivative Works to the public;
+
+d) to perform the Original Work publicly; and
+
+e) to display the Original Work publicly.
+
+2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.
+
+3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.
+
+4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.
+
+5) This section intentionally omitted.
+
+6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.
+
+7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.
+
+8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
+
+9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions.
+
+10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.
+
+11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. �� 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.
+
+12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.
+
+13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.
+
+14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
+
+15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.
+
+This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.
+
+ 
+
diff --git a/COPYING.GPL b/COPYING.GPL
new file mode 100644
index 0000000..0058a83
--- /dev/null
+++ b/COPYING.GPL
@@ -0,0 +1,346 @@
+NOTE! The GPL below is copyrighted by the Free Software Foundation, but
+the instance of code that it refers to (the kde programs) are copyrighted
+by the authors who actually wrote it.
+
+---------------------------------------------------------------------------
+			
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+               51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
 ** Diff limit reached (max: 250 lines) **
dfbf426f 2011-07-08 21:23:29 tpearson
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M tqdbusobjectpath.cpp
M tqdbusobjectpath.h
 ** Diff limit reached (max: 250 lines) **
c8d1884b 2011-08-05 12:12:16 tpearson
Fix missing Q_OBJECT macros


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M tqdbusconnection.h
M tqdbusproxy.h
 ** Diff limit reached (max: 250 lines) **
f32d0d5f 2011-08-10 01:08:18 tpearson
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M COPYING.GPL
M INSTALL
M tools/dbusxml2qt3/main.cpp
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusconnection.cpp
M tqdbusconnection.h
M tqdbusdata.h
M tqdbusdataconverter.h
M tqdbuserror.cpp
M tqdbuserror.h
M tqdbusintegrator.cpp
M tqdbusobjectpath.cpp
 ** Diff limit reached (max: 250 lines) **
501d489d 2011-08-10 17:19:39 tpearson
rename the following methods:
tqparent parent
tqmask mask


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M tools/dbusxml2qt3/classgen.cpp
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusconnection_p.h
M tqdbusintegrator.cpp
M tqdbusobjectpath.h
M tqdbusproxy.cpp
M tqdbusproxy.h
M tqdbusserver.cpp
M tqdbusserver.h
 ** Diff limit reached (max: 250 lines) **
cf705daa 2011-11-04 14:41:56 Timothy Pearson
Add common directories
A .gitmodules
A admin
A cmake
 ** Diff limit reached (max: 250 lines) **
ab0f85c5 2011-11-04 16:15:13 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
58609ebe 2011-11-05 22:32:22 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
89f354c4 2011-11-06 02:53:08 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2b4afbf6 2011-11-06 02:53:13 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d6818b90 2011-11-06 17:05:41 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
cf51f193 2011-11-06 22:12:18 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3f4b11e8 2011-11-08 01:53:29 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
be57727f 2011-11-16 13:44:22 Timothy Pearson
Additional renaming of kde to tde
M AUTHORS
M tqdbusconnection.cpp
M tqdbusconnection.h
M tqdbusconnection_p.h
M tqdbuserror.cpp
M tqdbuserror.h
M tqdbusintegrator.cpp
M tqdbusmarshall.cpp
M tqdbusmarshall.h
M tqdbusmessage.cpp
M tqdbusmessage.h
M tqdbusmessage_p.h
M tqdbusserver.cpp
M tqdbusserver.h
M tqdbusvariant.h
 ** Diff limit reached (max: 250 lines) **
f3483503 2011-11-16 14:25:59 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
31171787 2011-11-16 14:26:00 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
bdf5d1f4 2011-11-18 01:37:54 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
447abd13 2011-11-26 13:52:40 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8cc1f8a5 2011-12-03 22:31:23 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
58cb4c3b 2011-12-07 19:42:51 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ab51f6a1 2011-12-15 15:34:26 Timothy Pearson
Rename a number of old tq methods that are no longer tq specific
M tools/dbusxml2qt3/classgen.cpp
M tools/dbusxml2qt3/main.cpp
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
c29685c8 2011-12-16 09:57:57 Timothy Pearson
Revert "Rename a number of old tq methods that are no longer tq specific"

This reverts commit ab51f6a1367bd94d17209f6d8b327ab5e7eec56f.
M tools/dbusxml2qt3/classgen.cpp
M tools/dbusxml2qt3/main.cpp
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
f2d20e88 2011-12-18 18:15:41 Timothy Pearson
Rename old tq methods that no longer need a unique name
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
bc4ffb59 2011-12-19 11:41:28 Timothy Pearson
Remove additional unneeded tq method conversions
M tools/dbusxml2qt3/classgen.cpp
 ** Diff limit reached (max: 250 lines) **
35de5fb8 2011-12-31 23:21:16 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b6e3565f 2012-01-02 11:22:24 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
84da978f 2012-01-20 01:09:27 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4522b42d 2012-02-01 16:16:32 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c3544799 2012-02-02 03:07:04 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c8323b55 2012-02-02 13:34:34 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
332d22ae 2012-02-07 19:16:12 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
23308c37 2012-02-10 12:53:03 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0a18a19f 2012-02-11 13:45:34 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3b5af547 2012-02-11 13:45:35 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
ce15d573 2012-02-12 16:43:42 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fdb7c13c 2012-02-14 21:39:22 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
53193f5e 2012-02-16 16:17:56 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
653e1bd9 2012-02-17 16:02:10 Timothy Pearson
Remove spurious TQ_OBJECT instances
M tools/dbusxml2qt3/classgen.cpp
M tqdbusconnection.h
M tqdbusconnection_p.h
M tqdbusproxy.h
M tqdbusserver.h
 ** Diff limit reached (max: 250 lines) **
da9c5d20 2012-02-19 15:01:32 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
814cec8b 2012-02-25 16:47:08 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
5c28119b 2012-02-26 15:31:07 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
33bcd26f 2012-02-26 15:31:09 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9382852b 2012-03-01 13:23:20 Timothy Pearson
Rename additional global TQt functions
M tools/dbusxml2qt3/classgen.cpp
M tools/dbusxml2qt3/main.cpp
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusconnection.h
M tqdbusdata.cpp
M tqdbusdatalist.cpp
M tqdbusdatamap.h
M tqdbusintegrator.cpp
M tqdbusmarshall.cpp
M tqdbusmessage.cpp
M tqdbusobject.h
M tqdbusproxy.h
 ** Diff limit reached (max: 250 lines) **
88e8ccf0 2012-03-05 23:50:31 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
caac2941 2012-03-06 12:10:37 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8eaad764 2012-03-13 02:33:22 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
05462ac4 2012-03-26 15:40:16 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d94807d7 2012-04-11 00:26:01 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6d584fc2 2012-04-11 00:26:02 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c7170697 2012-04-14 17:13:48 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3dc074b1 2012-05-19 02:00:19 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
db03f52e 2012-06-08 16:59:26 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
20e4ac81 2012-06-08 16:59:28 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fd4eaec5 2012-06-12 20:18:34 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
f7d452ce 2012-06-14 01:34:44 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d2a36934 2012-06-15 11:25:23 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
28ed6372 2012-06-19 19:20:24 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9c0afa85 2012-06-21 19:56:34 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
48ab18c6 2012-08-07 04:41:19 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b6aba4c4 2012-08-25 01:16:58 Timothy Pearson
Fix handling of struct types in arrays
M tqdbusmarshall.cpp
 ** Diff limit reached (max: 250 lines) **
cd48fbed 2012-08-25 14:25:30 Timothy Pearson
Additional fixups for struct handling
M tqdbusmarshall.cpp
 ** Diff limit reached (max: 250 lines) **
df590f5e 2012-09-08 18:00:29 Timothy Pearson
Reset error object to succesful state in async calls
M tools/dbusxml2qt3/methodgen.cpp
 ** Diff limit reached (max: 250 lines) **
f69522d4 2012-09-10 01:09:30 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
7f085b46 2012-09-14 21:57:16 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3bc7eec4 2012-11-20 03:08:39 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
27b071ab 2012-11-20 03:08:45 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c34905ed 2012-11-25 20:06:11 Timothy Pearson
Add support for marshalled Bool types
M tqdbusmarshall.cpp
 ** Diff limit reached (max: 250 lines) **
76bf393f 2012-11-26 10:46:39 Timothy Pearson
Fix intermittent incorrectly set error object on successful dbus call
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
2c005845 2012-11-26 10:57:44 Timothy Pearson
Fix last commit
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
545c32d8 2012-11-26 12:19:30 Timothy Pearson
Fix long-standing intermittent bug whereby an application using dbus-1-tqt would randomly hang after many hours of continuous operation
M tqdbusconnection_p.h
M tqdbusintegrator.cpp
 ** Diff limit reached (max: 250 lines) **
89f5ac97 2012-11-27 11:57:12 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
795f1575 2012-11-27 11:57:20 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a111d47e 2012-11-28 10:37:59 Timothy Pearson
Generate synchronous methods alongside asynchronous methods
M tools/dbusxml2qt3/methodgen.cpp
 ** Diff limit reached (max: 250 lines) **
ede17586 2012-11-29 01:04:37 Timothy Pearson
Fix event queue
M tqdbusconnection_p.h
M tqdbusintegrator.cpp
 ** Diff limit reached (max: 250 lines) **
26e72a7d 2012-12-01 23:31:38 Timothy Pearson
Update AUTHORS file
M AUTHORS
 ** Diff limit reached (max: 250 lines) **
15cf9762 2012-12-05 01:10:20 Timothy Pearson
Fix crash on hibernate
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
2ceb753f 2013-01-20 01:42:44 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
60f556c6 2013-01-22 23:38:46 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
cb8a641e 2013-01-26 14:21:33 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e6583f17 2013-01-27 04:11:58 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c02b7776 2013-01-27 04:12:01 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
68264e44 2013-01-27 20:59:14 Timothy Pearson
Rename kiobuffer and KHTML
M cmake
 ** Diff limit reached (max: 250 lines) **
d37e98be 2013-01-27 21:37:41 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d1ea4035 2013-01-30 02:39:57 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
71340c37 2013-02-11 04:06:58 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
79ade6f9 2013-02-15 23:10:47 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7e622735 2013-02-15 23:10:50 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b7fc31ea 2013-02-16 01:06:02 Timothy Pearson
Fix build system references to kabc
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
60870683 2013-02-16 02:56:55 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0cf458da 2013-02-16 02:56:56 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fae8147c 2013-02-16 12:38:47 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8f106379 2013-02-18 16:23:31 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f2dc4edf 2013-02-19 00:00:54 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
24b0710d 2013-02-20 18:01:02 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d31c396e 2013-02-21 14:48:48 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6dd1ccf1 2013-02-21 14:48:52 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
cad05aaa 2013-04-15 12:40:24 Timothy Pearson
Fix failure to report DBUS non-fatal errors
M tqdbusconnection.cpp
M tqdbuserror.cpp
M tqdbuserror.h
 ** Diff limit reached (max: 250 lines) **
796df5eb 2013-04-18 19:44:08 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6d564efb 2013-05-17 22:14:30 Timothy Pearson
Add ability to obtain error messages from async calls
M tools/dbusxml2qt3/classgen.cpp
M tools/dbusxml2qt3/methodgen.cpp
 ** Diff limit reached (max: 250 lines) **
02a32f14 2013-05-23 21:12:00 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
03fde36c 2013-08-26 15:52:27 Alexander Golubev
Fix incorrect generated C++ template code
This resolves Bug 1604
M tools/dbusxml2qt3/methodgen.cpp
 ** Diff limit reached (max: 250 lines) **
9a54773e 2013-08-27 18:12:59 Slávek Banko
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d4bb4e40 2013-08-29 18:27:37 Slávek Banko
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8dfad77c 2013-09-03 12:58:52 Slávek Banko
Additional k => tde renaming and fixes
M AUTHORS
M admin
M tqdbusconnection.cpp
M tqdbusconnection.h
M tqdbusconnection_p.h
M tqdbuserror.cpp
M tqdbuserror.h
M tqdbusintegrator.cpp
M tqdbusmarshall.cpp
M tqdbusmarshall.h
M tqdbusmessage.cpp
M tqdbusmessage.h
M tqdbusmessage_p.h
M tqdbusserver.cpp
M tqdbusserver.h
M tqdbusvariant.h
 ** Diff limit reached (max: 250 lines) **
e92a7678 2013-09-15 08:47:26 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
52933e3b 2013-09-15 08:47:28 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9a134f56 2013-11-18 14:21:15 Slávek Banko
Add support for data type UnixFD
A tqdbusunixfd.cpp
A tqdbusunixfd.h
M CMakeLists.txt
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusdata.cpp
M tqdbusdata.h
M tqdbusdatalist.cpp
M tqdbusdatalist.h
M tqdbusdatamap.h
M tqdbusmarshall.cpp
 ** Diff limit reached (max: 250 lines) **
d1ea1d40 2013-11-18 19:36:52 Slávek Banko
Fix typo in prior commit
M tools/dbusxml2qt3/methodgen.cpp
M tqdbusdatalist.h
 ** Diff limit reached (max: 250 lines) **
50c7fa52 2013-12-23 05:55:27 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ecbec642 2013-12-23 05:55:30 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
89be8025 2014-01-29 19:31:39 Slávek Banko
Fix duplication UnixFD during demarshall
Fix uninitialized UnixFD private data
M tqdbusmarshall.cpp
M tqdbusunixfd.cpp
 ** Diff limit reached (max: 250 lines) **
f8eff596 2014-03-27 03:54:12 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d5f4ec69 2014-03-27 03:54:15 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8c7860c5 2014-03-28 18:35:08 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
909a74c3 2014-04-16 23:49:43 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1225c57e 2014-05-26 19:54:12 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e8baf6e0 2014-05-26 21:32:06 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4cdf1eaf 2014-08-28 17:56:48 Timothy Pearson
Fix memory leak on calling TQT_DBusConnection::sendWithReply
Notably tdepowersave no longer leaks memory after this patch
M tqdbusconnection.cpp
 ** Diff limit reached (max: 250 lines) **
faf70d2c 2014-09-14 12:34:23 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
89feb37c 2014-09-24 12:10:51 Slávek Banko
Fix remaining renaming knewstuff
M admin
 ** Diff limit reached (max: 250 lines) **
66e3cf14 2014-09-28 21:37:20 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5ddc3488 2014-09-29 11:42:43 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
19b41e23 2014-10-12 11:11:04 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a976361a 2014-10-13 17:16:05 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
0add2f9a 2014-10-14 13:14:42 Automated System
Reset submodule main/dependencies/dbus-1-tqt/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
84d58d05 2014-10-19 23:00:48 Automated System
Reset submodule main/dependencies/dbus-1-tqt/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **