Branch: null

c6ca83d0 2010-09-09 15:27:19 tpearson
* Added kgtk-qt3
* Slight kpowersave message cleanup


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1173604 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A AUTHORS
A CMakeLists.txt
A COPYING
A ChangeLog
A README
A TODO
A cmake/FindMsgfmt.cmake
A common/common.h
A common/connect.h
A config.h.cmake
A debian/cdbs/buildvars.mk
A debian/cdbs/debian-qt-kde.mk
A debian/cdbs/kde.mk
A debian/cdbs/team-members
A debian/cdbs/uploaders.mk
A debian/cdbs/versions.pl
A debian/changelog
A debian/compat
A debian/control
A debian/copyright
A debian/rules
A debian/rules.bkp
A gtk2/CMakeLists.txt
A gtk2/kgtk2-wrapper.cmake
A gtk2/kgtk2.c
A kdialogd-wrapper
A kdialogd3/CMakeLists.txt
A kdialogd3/kdialogd.cpp
A kdialogd3/kdialogd.h
A kdialogd3/po/CMakeLists.txt
A kdialogd3/po/cs.po
A kdialogd3/po/de.po
A kdialogd3/po/en_GB.po
A kdialogd3/po/es.po
A kdialogd3/po/fr.po
A kdialogd3/po/kdialogd3.pot
A kdialogd3/po/pt_BR.po
A kdialogd3/po/ru.po
A kdialogd3/po/zh_CN.po
A kdialogd4/CMakeLists.txt
A kdialogd4/kdialogd.cpp
A kdialogd4/kdialogd.h
A kdialogd4/po/CMakeLists.txt
A kdialogd4/po/cs.po
A kdialogd4/po/de.po
A kdialogd4/po/en_GB.po
A kdialogd4/po/es.po
A kdialogd4/po/fr.po
A kdialogd4/po/kdialogd4.pot
A kdialogd4/po/pt_BR.po
A kdialogd4/po/ru.po
A kdialogd4/po/zh_CN.po
A kgtk-wrapper
A mangled.sh
A qt3/CMakeLists.txt
A qt3/kqt3-wrapper.cmake
A qt3/kqt3.cpp
A qt4/CMakeLists.txt
A qt4/kqt4-wrapper.cmake
A qt4/kqt4.cpp
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..2925c35
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+Craig Drummond <Craig.Drummond@...>
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..0593586
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,82 @@
+project(KGtk)
+cmake_minimum_required(VERSION 2.4.0)
+
+set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
+set(CPACK_GENERATOR "TBZ2")
+set(CPACK_SOURCE_GENERATOR "TBZ2")
+set(CPACK_PACKAGE_VERSION_MAJOR "0")
+set(CPACK_PACKAGE_VERSION_MINOR "10")
+set(CPACK_PACKAGE_VERSION_PATCH "1")
+set(KGTK_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
+set(KGTK_VERSION_FULL "${KGTK_VERSION}.${CPACK_PACKAGE_VERSION_PATCH}")
+set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${KGTK_VERSION_FULL}")
+include(CPack)
+
+set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
+include(CheckFunctionExists)
+check_function_exists(getpeereid HAVE_GETPEEREID)
+
+# Cant compile Qt3/KDE3 at the same time as Qt4/KDE4...
+if ("${KGTK_KDE4}" MATCHES "true" OR "${KGTK_QT4}" MATCHES "true")
+    if (NOT "${KGTK_KDE3}" MATCHES "false" OR NOT "${KGTK_QT3}" MATCHES "false")
+        set(KGTK_KDE3 "false")
+        set(KGTK_QT3 "false")
+        message("** INFORMATION: Compiling Qt4/KDE4, Qt3/KDE3 disabled")
+    endif (NOT "${KGTK_KDE3}" MATCHES "false" OR NOT "${KGTK_QT3}" MATCHES "false")
+endif ("${KGTK_KDE4}" MATCHES "true" OR "${KGTK_QT4}" MATCHES "true")
+
+if (NOT "${KGTK_KDE3}" MATCHES "false")
+    add_subdirectory(kdialogd3)
+endif (NOT "${KGTK_KDE3}" MATCHES "false")
+
+if ("${KGTK_KDE4}" MATCHES "true")
+    add_subdirectory(kdialogd4)
+    # For some reason kdialogd4 does not install unless you cd into the kdialogd4 folder?
+    # ...hacky fix for this...
+    install(PROGRAMS ${CMAKE_BINARY_DIR}/kdialogd4/kdialogd4 DESTINATION bin)
+endif ("${KGTK_KDE4}" MATCHES "true")
+
+if (NOT "${KGTK_GTK2}" MATCHES "false")
+    # Check if we have dlvsym...
+    find_library(LIBDLVSYM_LIBRARY
+                 NAMES dl
+                 PATHS /lib /usr/lib /usr/X11R6/lib /usr/local/lib)
+
+    if(LIBDLVSYM_LIBRARY)
+        set(HAVE_DLVSYM 1)
+        # Determine version of dlsym...
+        find_library(LIBDL_LIBRARY
+                     NAMES dl
+                     PATHS /lib /usr/lib /usr/X11R6/lib /usr/local/lib)
+
+        if(LIBDL_LIBRARY)
+            execute_process(COMMAND objdump --dynamic-syms ${LIBDL_LIBRARY}
+                            COMMAND grep dlsym
+                            OUTPUT_VARIABLE DLSYM_DATA)
+            separate_arguments(DLSYM_DATA)
+            if (${CMAKE_MAJOR_VERSION} GREATER 2 OR ${CMAKE_MINOR_VERSION} GREATER 4)
+                cmake_policy(SET CMP0007 OLD)
+            endif (${CMAKE_MAJOR_VERSION} GREATER 2 OR ${CMAKE_MINOR_VERSION} GREATER 4)
+            list(GET DLSYM_DATA 4 KGTK_DLSYM_VERSION)
+        endif(LIBDL_LIBRARY)
+    else(LIBDLVSYM_LIBRARY)
+        message("** INFORMATION: You're libdl does not contain dlvsym - SWT apps will not be supported")
+    endif(LIBDLVSYM_LIBRARY)
+
+    add_subdirectory(gtk2)
+endif (NOT "${KGTK_GTK2}" MATCHES "false")
+
+if (NOT "${KGTK_QT3}" MATCHES "false")
+    add_subdirectory(qt3)
+endif (NOT "${KGTK_QT3}" MATCHES "false")
+
+if ("${KGTK_QT4}" MATCHES "true")
+    add_subdirectory(qt4)
+endif ("${KGTK_QT4}" MATCHES "true")
+
+
+install(PROGRAMS ${CMAKE_SOURCE_DIR}/kdialogd-wrapper DESTINATION bin)
+install(PROGRAMS ${CMAKE_SOURCE_DIR}/kgtk-wrapper DESTINATION bin)
+
+message("** INFORMATION: Using installation prefix: ${CMAKE_INSTALL_PREFIX}")
+configure_file (config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..5b6e7c6
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,340 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+                       59 Temple Place, Suite 330, Boston, MA  02111-1307  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.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
 ** Diff limit reached (max: 250 lines) **
2af5d883 2010-09-09 18:08:28 tpearson
Deleted accidental commit of Debian directory


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1173645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
R debian/cdbs/buildvars.mk
R debian/cdbs/debian-qt-kde.mk
R debian/cdbs/kde.mk
R debian/cdbs/team-members
R debian/cdbs/uploaders.mk
R debian/cdbs/versions.pl
R debian/changelog
R debian/compat
R debian/control
R debian/copyright
R debian/rules
R debian/rules.bkp
 ** Diff limit reached (max: 250 lines) **
f4b5a154 2010-09-16 01:59:38 tpearson
Fixed language typo


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1175922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
38689594 2011-05-08 01:44:53 tpearson
Deleted Qt4/KDE4 portions of kgtk-qt3


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1230840 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
R kdialogd4/CMakeLists.txt
R kdialogd4/kdialogd.cpp
R kdialogd4/kdialogd.h
R kdialogd4/po/CMakeLists.txt
R kdialogd4/po/cs.po
R kdialogd4/po/de.po
R kdialogd4/po/en_GB.po
R kdialogd4/po/es.po
R kdialogd4/po/fr.po
R kdialogd4/po/kdialogd4.pot
R kdialogd4/po/pt_BR.po
R kdialogd4/po/ru.po
R kdialogd4/po/zh_CN.po
R qt4/CMakeLists.txt
R qt4/kqt4-wrapper.cmake
R qt4/kqt4.cpp
 ** Diff limit reached (max: 250 lines) **
7b227bd6 2011-05-08 01:58:59 tpearson
Fix up build system for TQt


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1230843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
M kdialogd3/CMakeLists.txt
M qt3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
7a92d5c7 2011-05-08 14:29:16 tpearson
TQt4 port kgtk-qt3
This enables compilation under both Qt3 and Qt4


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1230933 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M common/common.h
M gtk2/kgtk2.c
M kdialogd3/kdialogd.cpp
M kdialogd3/kdialogd.h
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
a9fed73a 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/applications/kgtk-qt3@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
3320ce95 2011-07-19 13:44:25 tpearson
Rename tqgeometry* to geometry*


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1242307 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
f195ed3e 2011-07-27 19:01:26 tpearson
Add libnspr4.so as an LD_PRELOAD dependency of kgtk-qt3 to fix Pidgin crash


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1243491 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2-wrapper.cmake
 ** Diff limit reached (max: 250 lines) **
3f72ed45 2011-07-27 19:12:42 tpearson
Make KGTK::PR_FindFunctionSymbol more robust


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1243493 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
3dc55830 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/applications/kgtk-qt3@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
16fc4daa 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/applications/kgtk-qt3@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
M kdialogd3/kdialogd.cpp
M kdialogd3/kdialogd.h
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
bd4e871a 2011-08-20 01:06:53 tpearson
Use TDE_FULL_SESSION instead of KDE_FULL_SESSION


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1248149 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
M qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
ce254950 2011-08-20 20:43:11 tpearson
Convert remaining references to kde3 (e.g. in paths) to trinity


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
a3490ec1 2011-08-21 23:16:36 tpearson
Fix kgtk-kde3 FTBFS


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1248768 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
90b236a8 2011-08-31 13:25:22 tpearson
FIx kgtk-qt3 hang due to incorrect moc binary call


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1250613 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
b07b4efa 2011-10-09 20:04:16 tpearson
Force kgtk-qt3 to only provide open/save dialogs for recognized applications
This fixes a number of random crash bugs in GTK apps under Trinity sessions
Bugs affected: 468, 535


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258106 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
f3cecf25 2011-10-09 20:41:14 tpearson
Fix kgtk dialogs with GTK applications that add buttons via gtk_dialog_add_buttons after the dialog is created
This includes geany and possibly later Firefox versions


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258109 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
d48bdbc9 2011-10-09 20:51:52 tpearson
Make kgtk-qt3 hook into gtk_dialog_add_button to monitor for response ID changes
This, when combined with the previous patch, should fix Firefox not opening files when requested
Bugs affected: 505


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258110 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
b3052913 2011-10-09 21:08:50 tpearson
Add framework to blacklist apps from using kgtk-qt3
The only application currently on the blacklist is Audacity
Bugs affected: 516


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258111 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
31ad7930 2011-10-09 21:10:57 tpearson
Blacklist gnumeric in kgtk-qt3
Bugs affected: 468


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258112 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
56a74759 2011-10-15 04:27:28 tpearson
Fix kgtk-trinity FTBFS under oneiric


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kgtk-qt3@1258968 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
769c2543 2011-11-04 16:46:51 Timothy Pearson
Added common directories
A .gitmodules
A admin
 ** Diff limit reached (max: 250 lines) **
c3784661 2011-11-05 22:07:15 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a6b008f5 2011-11-06 02:19:05 Timothy Pearson
Additional kde to tde renaming
M common/connect.h
M kdialogd3/CMakeLists.txt
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
e520ba16 2011-11-06 03:07:07 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
16806f8b 2011-11-06 22:27:57 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
cd1ba897 2011-11-07 20:15:55 Timothy Pearson
Rename kwin to twin (part 1 of 2)
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
26eddbe9 2011-11-08 01:10:43 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f2cb408f 2011-11-16 13:38:46 Timothy Pearson
Additional renaming of kde to tde
M common/connect.h
M kdialogd3/kdialogd.cpp
M kdialogd3/po/de.po
M kdialogd3/po/ru.po
 ** Diff limit reached (max: 250 lines) **
02dc6b7f 2011-11-16 14:03:22 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
23aab05b 2011-11-18 02:12:34 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
01adb8f0 2011-11-24 17:10:48 Timothy Pearson
Initial CMake conversion attempt
A CMakeLists.txt.orig
A ConfigureChecks.cmake
M AUTHORS
M CMakeLists.txt
M kdialogd3/CMakeLists.txt
M qt3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
d7071685 2011-11-24 17:12:25 Timothy Pearson
Remove incorrect internal cmake directory
R cmake/FindMsgfmt.cmake
 ** Diff limit reached (max: 250 lines) **
8f628901 2011-11-24 17:14:29 Timothy Pearson
Added common directories
A cmake
M .gitmodules
 ** Diff limit reached (max: 250 lines) **
6f3151e0 2011-11-24 17:23:14 Timothy Pearson
Fix po file handling
A kdialogd3/po/cs/kgtk.po
A kdialogd3/po/de/kgtk.po
A kdialogd3/po/en_GB/kgtk.po
A kdialogd3/po/es/kgtk.po
A kdialogd3/po/fr/kgtk.po
A kdialogd3/po/pt_BR/kgtk.po
A kdialogd3/po/ru/kgtk.po
A kdialogd3/po/zh_CN/kgtk.po
M kdialogd3/po/CMakeLists.txt
R kdialogd3/po/cs.po
R kdialogd3/po/de.po
R kdialogd3/po/en_GB.po
R kdialogd3/po/es.po
R kdialogd3/po/fr.po
R kdialogd3/po/pt_BR.po
R kdialogd3/po/ru.po
R kdialogd3/po/zh_CN.po
 ** Diff limit reached (max: 250 lines) **
d855dca8 2011-11-24 17:25:07 Timothy Pearson
Move po directory to standard location
M kdialogd3/CMakeLists.txt
R kdialogd3/po/CMakeLists.txt
R kdialogd3/po/cs/kgtk.po
R kdialogd3/po/de/kgtk.po
R kdialogd3/po/en_GB/kgtk.po
R kdialogd3/po/es/kgtk.po
R kdialogd3/po/fr/kgtk.po
R kdialogd3/po/kdialogd3.pot
R kdialogd3/po/pt_BR/kgtk.po
R kdialogd3/po/ru/kgtk.po
R kdialogd3/po/zh_CN/kgtk.po
 ** Diff limit reached (max: 250 lines) **
32530d03 2011-11-24 17:26:39 Timothy Pearson
Fix last commit
A po/CMakeLists.txt
A po/cs/kgtk.po
A po/de/kgtk.po
A po/en_GB/kgtk.po
A po/es/kgtk.po
A po/fr/kgtk.po
A po/kdialogd3.pot
A po/pt_BR/kgtk.po
A po/ru/kgtk.po
A po/zh_CN/kgtk.po
 ** Diff limit reached (max: 250 lines) **
ee4b551f 2011-11-24 17:27:01 Timothy Pearson
Fix FTBFS
M CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
e027fdc5 2011-11-24 17:33:01 Timothy Pearson
Fix FTBFS
M qt3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
1185d454 2011-11-24 17:34:14 Timothy Pearson
Fix FTBFS
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
64385ab9 2011-11-24 17:37:15 Timothy Pearson
Fix another FTBFS
M kdialogd3/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
a27251c6 2011-11-24 17:41:52 Timothy Pearson
Cleanup
A tqt/CMakeLists.txt
A tqt/kqt3-wrapper.cmake
A tqt/kqt3.cpp
M CMakeLists.txt
R CMakeLists.txt.orig
R qt3/CMakeLists.txt
R qt3/kqt3-wrapper.cmake
R qt3/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
2412f1c5 2011-11-26 15:07:19 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4a15cbc3 2011-12-03 23:45:40 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1904298d 2011-12-07 18:49:31 Timothy Pearson
Rename KDEHOME and KDEDIR
M README
 ** Diff limit reached (max: 250 lines) **
b3814551 2011-12-07 21:05:55 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1357c741 2011-12-08 17:21:33 Timothy Pearson
Rename additional KDE strings
M README
 ** Diff limit reached (max: 250 lines) **
115fcbe3 2011-12-15 15:30:29 Timothy Pearson
Rename a number of old tq methods that are no longer tq specific
M kdialogd3/kdialogd.cpp
M tqt/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
0683a2b5 2011-12-16 09:56:08 Timothy Pearson
Revert "Rename a number of old tq methods that are no longer tq specific"

This reverts commit 115fcbe323837e49907d6897f28dd8c91dea3b6f.
M kdialogd3/kdialogd.cpp
M tqt/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
3420c0cf 2011-12-18 18:09:50 Timothy Pearson
Rename old tq methods that no longer need a unique name
M tqt/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
b67bd80a 2011-12-19 11:36:30 Timothy Pearson
Remove additional unneeded tq method conversions
M kdialogd3/kdialogd.cpp
M tqt/kqt3.cpp
 ** Diff limit reached (max: 250 lines) **
2bedec7d 2012-01-01 00:48:03 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c8c62fdb 2012-01-02 12:35:50 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
7feab3c5 2012-01-20 02:32:14 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
75103729 2012-01-30 11:58:55 Timothy Pearson
Rename ksocket and kcache
M common/common.h
 ** Diff limit reached (max: 250 lines) **
e662d5ca 2012-02-01 14:23:01 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f81fcfb1 2012-02-02 04:24:36 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
77cc268b 2012-02-02 14:55:41 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
aac7d409 2012-02-03 18:22:05 Timothy Pearson
Rename KDETMP KDEVARTMP and KDEWM
M ChangeLog
M common/common.h
 ** Diff limit reached (max: 250 lines) **
5a43c4a1 2012-02-07 19:47:29 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5637c3b8 2012-02-10 13:58:54 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d8d699a4 2012-02-11 14:51:36 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f34cb298 2012-02-11 14:51:38 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a03ddcf5 2012-02-12 15:27:39 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c551b710 2012-02-14 22:10:14 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d260be52 2012-02-16 18:11:19 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e7fee052 2012-02-17 15:59:36 Timothy Pearson
Remove spurious TQ_OBJECT instances
M kdialogd3/kdialogd.h
 ** Diff limit reached (max: 250 lines) **
469b25a5 2012-02-19 16:46:32 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
59cf8023 2012-02-25 18:01:09 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
ab326ab4 2012-02-26 16:03:24 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0aac7b0d 2012-02-26 16:03:26 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
898a52aa 2012-03-02 02:05:12 Timothy Pearson
Rename additional global functions and variables for tqt3
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
d94dcb40 2012-03-06 01:05:12 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4ad69bec 2012-03-06 13:24:24 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a645ad70 2012-03-13 03:48:29 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f507f5c3 2012-03-26 16:52:31 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
fdd461c2 2012-04-10 23:29:38 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
128b4450 2012-04-10 23:29:42 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b9d9937c 2012-04-14 18:24:29 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c9007f3d 2012-05-10 16:18:10 Darrell Anderson
Branding cleanup: I18N_NOOP KDE -> TDE.
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
417cc1e7 2012-05-10 17:12:57 Darrell Anderson
Branding cleanup: KDE -> TDE.
M po/cs/kgtk.po
M po/de/kgtk.po
M po/en_GB/kgtk.po
M po/es/kgtk.po
M po/fr/kgtk.po
M po/kdialogd3.pot
M po/pt_BR/kgtk.po
M po/ru/kgtk.po
M po/zh_CN/kgtk.po
 ** Diff limit reached (max: 250 lines) **
07f07923 2012-05-19 03:14:52 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
042b9d6c 2012-06-08 15:41:39 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f6bd684c 2012-06-08 15:41:41 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6abcbc81 2012-06-12 18:22:17 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
92505f27 2012-06-14 02:52:14 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6fe6392d 2012-06-15 09:43:20 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
17fa766b 2012-06-19 17:38:07 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
55f75e88 2012-06-21 21:15:37 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c7c2ea45 2012-08-07 03:00:19 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
3fc5680d 2012-09-10 02:34:26 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
dfa501c6 2012-09-14 23:21:09 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
39806505 2012-10-22 20:10:08 Darrell Anderson
Add cmake support for WITH_GCC_VISIBILITY.
M ConfigureChecks.cmake
 ** Diff limit reached (max: 250 lines) **
f2f09858 2012-11-20 06:51:17 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f8a46af9 2012-11-20 06:51:24 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8566c20b 2012-11-27 06:47:19 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8f30cac9 2012-11-27 06:47:28 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d5522073 2013-01-19 18:46:26 Timothy Pearson
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
5e51ed8b 2013-01-20 00:28:19 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
251f86a8 2013-01-22 19:52:42 Timothy Pearson
Rename KInstance and KAboutData to avoid conflicts with KDE4
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
54c592a6 2013-01-22 21:49:48 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2caa5470 2013-01-25 00:07:36 Timothy Pearson
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
M ChangeLog
M kdialogd3/kdialogd.cpp
M kdialogd3/kdialogd.h
 ** Diff limit reached (max: 250 lines) **
71758384 2013-01-26 15:49:52 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5ff32d08 2013-01-27 00:53:00 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M kdialogd3/CMakeLists.txt
M kdialogd3/kdialogd.cpp
M kdialogd3/kdialogd.h
M kgtk-wrapper
 ** Diff limit reached (max: 250 lines) **
8cdcb976 2013-01-27 02:24:28 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
aac4fd9c 2013-01-27 02:24:30 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
40ff40ef 2013-01-27 20:56:05 Timothy Pearson
Rename kiobuffer and KHTML
M cmake
 ** Diff limit reached (max: 250 lines) **
9a6a4f27 2013-01-28 09:48:09 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ac466515 2013-01-30 00:57:32 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
42bf51c1 2013-01-31 13:17:21 Timothy Pearson
Rename KStandard for enhanced compatibility with KDE4
M common/common.h
 ** Diff limit reached (max: 250 lines) **
4af563ee 2013-02-11 05:40:41 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c2a71086 2013-02-14 17:05:08 Timothy Pearson
Rename common header files for consistency with class renaming
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
2da470e6 2013-02-15 21:46:05 Timothy Pearson
Rename additional header files to avoid conflicts with KDE4
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
0e2c6290 2013-02-16 00:50:37 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ada751c0 2013-02-16 00:50:41 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
e2758896 2013-02-16 14:20:19 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
edf82986 2013-02-18 14:33:26 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
70755a5f 2013-02-19 01:30:27 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a8155373 2013-02-20 19:21:01 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
059fd37a 2013-02-21 15:09:37 Timothy Pearson
Second part of prior commit
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
bdc46c66 2013-04-18 18:12:01 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
82dfc962 2013-05-06 20:05:35 Darrell Anderson
Cleanup output clutter.
M gtk2/kgtk2.c
 ** Diff limit reached (max: 250 lines) **
7f557391 2013-05-23 19:07:13 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c4ec24f5 2013-08-27 16:07:15 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7a7dcd39 2013-08-29 18:38:09 Slávek Banko
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4844f8d2 2013-09-03 12:57:09 Slávek Banko
Additional k => tde renaming and fixes
M admin
M po/de/kgtk.po
M po/ru/kgtk.po
 ** Diff limit reached (max: 250 lines) **
20368a9e 2013-09-15 06:36:08 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
36c2fdeb 2013-09-15 06:36:11 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fad97b09 2013-12-23 06:09:29 Slávek Banko
Rename kdewidgets => tdewidgets
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
c76fbb2a 2014-03-27 04:49:19 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5532a222 2014-03-27 04:49:21 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
287f968e 2014-03-28 20:08:55 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
2b5731e9 2014-04-17 01:30:24 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8672f12f 2014-05-26 18:39:52 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a4389de3 2014-05-26 20:40:18 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9966a372 2014-09-14 16:12:52 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
1d93b1df 2014-09-24 12:10:27 Slávek Banko
Fix remaining renaming knewstuff
M admin
 ** Diff limit reached (max: 250 lines) **
e1dc2ec3 2014-09-28 22:12:13 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d1b7bc08 2014-09-29 10:39:41 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6f5d02d0 2014-10-12 11:47:02 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fae505da 2014-10-13 15:43:46 Timothy Pearson
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
M kdialogd3/kdialogd.cpp
 ** Diff limit reached (max: 250 lines) **
891b8e50 2014-10-13 17:49:08 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a0f9d842 2014-10-14 12:13:49 Automated System
Reset submodule main/applications/kgtk-qt3/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
f23595bd 2014-10-19 22:00:00 Automated System
Reset submodule main/applications/kgtk-qt3/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **