Branch: r14.0.x

f5a83a99 2010-02-15 12:11:59 tpearson
Added qtcuve theme engine


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1090657 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A CMakeLists.txt
A COPYING
A ChangeLog
A README
A TODO
A common/check_on.png
A common/check_x_on.png
A common/common.h
A common/config_file.c
A common/config_file.c-orig
A common/mkpkg
A common/radio_frame.png
A common/radio_light.png
A common/radio_on.png
A common/slider.png
A common/slider_light.png
A common/slider_light_v.png
A common/slider_v.png
A config.guess
A config.h.cmake
A config.sub
A config/CMakeLists.txt
A config/exportthemedialog.cpp
A config/exportthemedialog.h
A config/qtcurveconfig.cpp
A config/qtcurveconfig.h
A config/qtcurveconfigbase.ui
A style/CMakeLists.txt
A style/pixmaps.h
A style/qtcurve.cpp
A style/qtcurve.h
A style/qtcurve.themerc
A themes/CMakeLists.txt
A themes/Clean.qtcurve
A themes/Clear.qtcurve
A themes/Curve.qtcurve
A themes/Dull_Glass.qtcurve
A themes/Glass.qtcurve
A themes/Human.qtcurve
A themes/Inverted.qtcurve
A themes/Murrine.qtcurve
A themes/Plain.qtcurve
A themes/Plastic.qtcurve
A themes/Shiny_Glass.qtcurve
A themes/qtc_klearlooks.themerc
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..803ff67
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,57 @@
+project(QtCurve-KDE3)
+cmake_minimum_required(VERSION 2.4.0)
+
+set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
+set(CPACK_GENERATOR "DEB;RPM;TGZ")
+set(DEBIAN_PACKAGE_DESCRIPTION "QtCurve for Qt3/KDE3")
+set(DEBIAN_PACKAGE_SECTION "kde")
+set(CPACK_SOURCE_GENERATOR "TBZ2")
+set(CPACK_PACKAGE_VERSION_MAJOR "0")
+set(CPACK_PACKAGE_VERSION_MINOR "55")
+set(CPACK_PACKAGE_VERSION_PATCH "2")
+set(CPACK_PACKAGE_CONTACT "Craig Drummond <Craig.Drummond@...>")
+set(QTCURVE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
+set(QTCURVE_VERSION_FULL "${QTCURVE_VERSION}.${CPACK_PACKAGE_VERSION_PATCH}")
+set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${QTCURVE_VERSION_FULL}")
+set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${QTCURVE_VERSION_FULL}")
+include(CPack)
+
+set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
+
+find_package(KDE3 REQUIRED)
+include(KDE3Macros)
+
+exec_program(kde-config
+             ARGS --prefix
+             OUTPUT_VARIABLE CMAKE_INSTALL_PREFIX)
+
+file(TO_CMAKE_PATH "$ENV{KDEDIRS}" _KDEDIRS)
+
+# For KDE4 kde-config has been renamed to kde4-config
+find_program(KDE4_KDECONFIG_EXECUTABLE
+             NAMES kde4-config
+             PATHS ${CMAKE_INSTALL_PREFIX}/bin ${_KDEDIRS} /usr/local/bin /usr/bin /opt/kde4/bin NO_DEFAULT_PATH)
+
+if (NOT KDE4_KDECONFIG_EXECUTABLE)
+   find_program(KDE4_KDECONFIG_EXECUTABLE NAMES kde4-config )
+endif (NOT KDE4_KDECONFIG_EXECUTABLE)
+
+if(KDE4_KDECONFIG_EXECUTABLE)
+    exec_program(${KDE4_KDECONFIG_EXECUTABLE}
+                 ARGS --prefix
+                 OUTPUT_VARIABLE KDE4PREFIX)
+endif(KDE4_KDECONFIG_EXECUTABLE)
+
+if(NOT KDE4PREFIX)
+    set(KDE4PREFIX ${KDE3PREFIX})
+endif(NOT KDE4PREFIX)
+
+configure_file (config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
+add_definitions(${QT_DEFINITIONS} ${KDE3_DEFINITIONS})
+include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE3_INCLUDES})
+
+set(DATA_INSTALL_DIR ${KDE3PREFIX}/share/apps)
+add_subdirectory(style)
+add_subdirectory(config)
+add_subdirectory(themes)
+
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..623b625
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,340 @@
+		    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.
+
+  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
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
 ** Diff limit reached (max: 250 lines) **
70f7d26b 2010-03-23 18:54:55 tpearson
Fixed images


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1106826 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M common/check_on.png
M common/check_x_on.png
M common/radio_frame.png
M common/radio_light.png
M common/radio_on.png
M common/slider.png
M common/slider_light.png
M common/slider_light_v.png
M common/slider_v.png
 ** Diff limit reached (max: 250 lines) **
b23b8edc 2010-10-05 13:12:45 tpearson
Update qtcurve to latest upstream version


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1182805 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A AUTHORS
A cmake/QtCurveQt3.cmake
A colors/CMakeLists.txt
A colors/QtCurve.kcsrc
A common/colorutils.c
A common/dot.png
A common/radio_inner.png
A common/radio_on_small.png
A po/CMakeLists.txt
A po/generate.sh
A po/qtcurve.pot
A po/tr.po
A style/qtc_fixx11h.h
A style/qtc_kstyle.cpp
A style/qtc_kstyle.h
A themes/Agua.qtcurve
A themes/Agua_II.qtcurve
A themes/Flat.qtcurve
A themes/Klearlooks.qtcurve
A themes/Milk.qtcurve
A themes/Ozone.qtcurve
A themes/Silk.qtcurve
M CMakeLists.txt
M COPYING
M ChangeLog
M README
M common/common.h
M common/config_file.c
M common/radio_on.png
M config.h.cmake
M config/CMakeLists.txt
M config/exportthemedialog.cpp
M config/exportthemedialog.h
M config/qtcurveconfig.cpp
M config/qtcurveconfig.h
M config/qtcurveconfigbase.ui
M style/CMakeLists.txt
M style/pixmaps.h
M style/qtcurve.cpp
M style/qtcurve.h
M style/qtcurve.themerc
M themes/CMakeLists.txt
M themes/Curve.qtcurve
M themes/Human.qtcurve
M themes/Inverted.qtcurve
M themes/Murrine.qtcurve
M themes/Plastic.qtcurve
 ** Diff limit reached (max: 250 lines) **
d1fb9013 2011-05-06 17:09:18 tpearson
TQt4 port kde-style-qtcurve
This enables compilation under both Qt3 and Qt4


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1230744 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
M common/colorutils.c
M common/common.h
M common/config_file.c
M common/config_file.c-orig
M style/pixmaps.h
M style/qtc_fixx11h.h
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
12bbadcc 2011-05-07 01:08:06 tpearson
Fix FTBFS


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1230758 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
85ababba 2011-07-07 16:14:06 tpearson
Rename incorrect instances of tqrepaint[...] to repaint[...]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M style/qtc_kstyle.h
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
f99a392f 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/kde-style-qtcurve@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M style/qtc_kstyle.cpp
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
a66f7ec2 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/kde-style-qtcurve@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M common/config_file.c
M common/config_file.c-orig
M style/pixmaps.h
M style/qtc_kstyle.cpp
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
ebff9b8f 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/kde-style-qtcurve@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M style/qtc_kstyle.cpp
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
6ad4a09c 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/kde-style-qtcurve@1248149 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
678a56c3 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/kde-style-qtcurve@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
M config/CMakeLists.txt
M po/tr.po
M style/CMakeLists.txt
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
3cc48991 2011-09-01 08:14:35 tpearson
Add PE_HeaderSectionMenu to QtCurve style


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1250784 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
88ea2c63 2011-09-18 18:43:22 tpearson
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*
This fixes the Kopete MSN protocol among other things


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-style-qtcurve@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M common/common.h
M common/config_file.c
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
d6d63766 2011-11-04 16:45:31 Timothy Pearson
Added common directories
A .gitmodules
A admin
 ** Diff limit reached (max: 250 lines) **
2a6fba0f 2011-11-05 22:04:43 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9f988339 2011-11-06 02:23:31 Timothy Pearson
Additional kde to tde renaming
M config/CMakeLists.txt
M style/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
42e7b069 2011-11-06 03:04:55 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3c0fa634 2011-11-06 21:38:03 Timothy Pearson
Rename additional instances of KDE to TDE
M config/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
17b062f3 2011-11-06 22:25:27 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
77cbe430 2011-11-07 20:20:31 Timothy Pearson
Rename kwin to twin (part 1 of 2)
M ChangeLog
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
c43b4a95 2011-11-08 02:16:23 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a194a574 2011-11-15 18:49:27 Timothy Pearson
Rename KDE_VERSION to TDE_VERSION
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
e0307df2 2011-11-16 13:43:50 Timothy Pearson
Additional renaming of kde to tde
M common/colorutils.c
M po/tr.po
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
f8b75db7 2011-11-16 14:01:24 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
61572100 2011-11-18 02:05:42 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1899f45e 2011-11-24 18:25:45 Timothy Pearson
Initial conversion to standard CMake system
A CMakeLists.txt.orig
A ConfigureChecks.cmake
M CMakeLists.txt
M style/CMakeLists.txt
R cmake/QtCurveQt3.cmake
 ** Diff limit reached (max: 250 lines) **
c8a9fe23 2011-11-24 18:26:54 Timothy Pearson
Added common directories
A cmake
M .gitmodules
 ** Diff limit reached (max: 250 lines) **
fd5c28e9 2011-11-24 18:30:34 Timothy Pearson
Fix FTBFS
M style/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
49b7f1fc 2011-11-24 18:46:52 Timothy Pearson
Fix CMake files
M CMakeLists.txt
M style/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
657d1731 2011-11-24 20:13:06 Timothy Pearson
Fix FTBFS
M config/CMakeLists.txt
M style/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
e9d913d6 2011-11-24 20:21:51 Timothy Pearson
Fix additional FTBFS
M config/CMakeLists.txt
M config/qtcurveconfigbase.ui
M style/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
f21c6e30 2011-11-24 20:24:04 Timothy Pearson
TQt conversion of config module
M config/qtcurveconfig.cpp
M config/qtcurveconfig.h
 ** Diff limit reached (max: 250 lines) **
aa4b9a06 2011-11-25 00:10:20 Timothy Pearson
Fix FTBFS
M CMakeLists.txt
M config.h.cmake
M config/qtcurveconfig.cpp
M config/qtcurveconfig.h
 ** Diff limit reached (max: 250 lines) **
7173a2aa 2011-11-25 00:11:18 Timothy Pearson
Fix FTBFS
M config/exportthemedialog.cpp
 ** Diff limit reached (max: 250 lines) **
84dbffd9 2011-11-25 00:21:05 Timothy Pearson
Fix FTBFS...again...
M config/exportthemedialog.h
 ** Diff limit reached (max: 250 lines) **
5f5bfe9f 2011-11-26 14:53:18 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
66f8bda5 2011-12-03 23:30:36 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1ef9a42a 2011-12-07 18:53:23 Timothy Pearson
Rename KDEHOME and KDEDIR
M CMakeLists.txt.orig
M ChangeLog
M README
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
ec19b9a1 2011-12-07 20:57:16 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
dd3d53e7 2011-12-08 17:25:42 Timothy Pearson
Rename additional KDE strings
M CMakeLists.txt.orig
M ChangeLog
M README
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
b98d1ff3 2011-12-15 15:34:00 Timothy Pearson
Rename a number of old tq methods that are no longer tq specific
M common/config_file.c
M common/config_file.c-orig
M style/qtc_fixx11h.h
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
77252ab6 2011-12-16 09:57:42 Timothy Pearson
Revert "Rename a number of old tq methods that are no longer tq specific"

This reverts commit b98d1ff3de3e501c2a08b61433937cc7bfcc97dc.
M common/config_file.c
M common/config_file.c-orig
M style/qtc_fixx11h.h
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
965dc06c 2011-12-18 18:15:07 Timothy Pearson
Rename old tq methods that no longer need a unique name
M style/qtc_fixx11h.h
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
0d3aa637 2011-12-19 11:41:01 Timothy Pearson
Remove additional unneeded tq method conversions
M style/qtc_kstyle.cpp
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
2f2607de 2011-12-21 14:07:16 Timothy Pearson
Rename obsolete tq methods to standard names
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
db4b84ac 2011-12-24 11:38:28 Timothy Pearson
Rename a few stragglers
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
944edbcf 2012-01-01 00:32:40 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
7efc054c 2012-01-02 12:22:12 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
db30fff9 2012-01-20 02:19:02 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4c288050 2012-02-01 17:24:26 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
69999bc2 2012-02-02 04:10:12 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a5c9c583 2012-02-02 14:40:47 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8270a2d3 2012-02-07 19:44:22 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3c6b5fa9 2012-02-10 13:46:28 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4ca3d38e 2012-02-11 14:39:15 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f12a764e 2012-02-11 14:39:16 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
073e89f2 2012-02-12 15:15:57 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4b42213b 2012-02-14 22:05:50 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ec5279c4 2012-02-16 17:59:00 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ecd830c9 2012-02-17 16:01:54 Timothy Pearson
Remove spurious TQ_OBJECT instances
M config/exportthemedialog.h
M config/qtcurveconfig.h
M style/qtc_kstyle.h
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
a3f07c4b 2012-02-19 16:30:29 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
010f9683 2012-02-23 20:26:04 Timothy Pearson
Fix FTBFS
M config/exportthemedialog.cpp
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
a22fee10 2012-02-23 20:31:33 Timothy Pearson
Fix a couple build warnings
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
96837efb 2012-02-25 17:47:59 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
edf49c58 2012-02-26 14:23:44 Timothy Pearson
Rename kde-config to tde-config
M CMakeLists.txt.orig
M ChangeLog
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
76967053 2012-02-26 15:59:41 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
03e470d6 2012-02-26 15:59:42 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
799430b0 2012-03-02 02:07:07 Timothy Pearson
Rename additional global functions and variables for tqt3
M style/qtc_kstyle.cpp
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
195153bb 2012-03-06 00:52:05 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
359e9a0b 2012-03-06 13:11:32 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
7530c0da 2012-03-13 03:35:32 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2be60cd4 2012-03-26 16:39:45 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4ab6e6c1 2012-04-10 23:22:04 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
90562654 2012-04-10 23:22:05 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
08dfb934 2012-04-13 02:49:55 Darrell Anderson
Fix inadvertent "TQ" changes.
M common/common.h
M common/config_file.c
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
e6128371 2012-04-14 18:12:02 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
69e56afc 2012-04-15 01:40:18 Darrell Anderson
Remove unecessary defines that conflicted with previous TQ cleanup.
M config.h.cmake
 ** Diff limit reached (max: 250 lines) **
96931af9 2012-04-30 12:46:40 Darrell Anderson
Fix broken locale install location for tr mo file.
M CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
0797a6fd 2012-05-19 03:01:02 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a3705659 2012-05-26 19:24:42 Darrell Anderson
Branding cleanup: KDE -> TDE
M config/qtcurveconfig.cpp
M po/qtcurve.pot
M po/tr.po
 ** Diff limit reached (max: 250 lines) **
b5095e33 2012-06-08 17:32:23 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
200aaf89 2012-06-08 17:32:25 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
31767d30 2012-06-12 18:04:59 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
88afb7bf 2012-06-14 02:37:09 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8e12c892 2012-06-15 09:29:15 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
1a05ca6b 2012-06-19 17:23:41 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
dc8692f8 2012-06-21 21:00:42 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8a81e3e9 2012-08-05 01:03:33 Timothy Pearson
Update to new style API
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
4fc58f39 2012-08-07 01:39:12 Timothy Pearson
TQStyle API update
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
de6fd185 2012-08-07 02:45:25 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9d466f48 2012-08-08 18:39:32 Timothy Pearson
Style API update
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
821d7de7 2012-09-01 10:04:20 Slávek Banko
Revert style and class names to QtCurve
Fix FTBFS on Qt3
M common/common.h
M common/config_file.c
M common/config_file.c-orig
M config/exportthemedialog.cpp
M config/qtcurveconfig.cpp
M config/qtcurveconfig.h
M config/qtcurveconfigbase.ui
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
e40085b1 2012-09-10 02:19:01 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
84e18380 2012-09-14 23:05:40 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
dc6c9f70 2012-10-17 15:08:56 Timothy Pearson
Do not use direct widget access when drawing tabs and popup menus
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
88437440 2012-10-22 20:16:18 Darrell Anderson
Add cmake support for WITH_GCC_VISIBILITY.
M ConfigureChecks.cmake
 ** Diff limit reached (max: 250 lines) **
30a39265 2012-10-31 01:09:09 Timothy Pearson
Update for style API
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
960121b3 2012-10-31 15:12:59 Timothy Pearson
Update to new style API
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
4465ba29 2012-11-04 01:34:27 Darrell Anderson
Fix references to user profile directory.
M README
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
1079dc4b 2012-11-04 16:20:28 Timothy Pearson
Fix crashes when used with third-party toolkits
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
51554563 2012-11-11 18:05:44 Timothy Pearson
Fix crashes when used with third party toolkits
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
21bf17ce 2012-11-14 23:49:11 Timothy Pearson
Update to latest style API
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
375d0ce1 2012-11-20 05:54:48 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8423017f 2012-11-20 05:54:51 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
331bbef9 2012-11-27 05:49:28 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6c102dd4 2012-11-27 05:49:39 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4033d79d 2013-01-20 02:54:45 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1df2f500 2013-01-22 19:59:17 Timothy Pearson
Rename KInstance and KAboutData to avoid conflicts with KDE4
M po/generate.sh
 ** Diff limit reached (max: 250 lines) **
ed4f864c 2013-01-22 21:30:50 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
34b82cf5 2013-01-24 13:26:58 Timothy Pearson
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
ac1e5178 2013-01-25 00:14:12 Timothy Pearson
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
M common/config_file.c
M common/config_file.c-orig
M config/exportthemedialog.cpp
M config/qtcurveconfig.cpp
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
53eb297c 2013-01-26 13:13:46 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M ChangeLog
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
44c2ed06 2013-01-26 15:30:03 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b668d578 2013-01-27 00:56:33 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M common/config_file.c
M common/config_file.c-orig
M config/CMakeLists.txt
M config/exportthemedialog.cpp
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
e93b675f 2013-01-27 02:06:11 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b0b88ce5 2013-01-27 02:06:14 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
37ecc287 2013-01-27 20:59:01 Timothy Pearson
Rename kiobuffer and KHTML
M ChangeLog
M cmake
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
13bef570 2013-01-28 09:28:33 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b508fc8e 2013-01-30 00:39:01 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
44605ea2 2013-01-31 00:19:09 Timothy Pearson
Rename KShared
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
d1903dde 2013-01-31 13:22:28 Timothy Pearson
Rename KStandard for enhanced compatibility with KDE4
M ChangeLog
M common/config_file.c
M common/config_file.c-orig
 ** Diff limit reached (max: 250 lines) **
1e760a2d 2013-02-01 15:06:00 Timothy Pearson
Rename a number of classes to enhance compatibility with KDE4
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
f7ed00bc 2013-02-02 20:53:50 Timothy Pearson
Rename kdisplay for enhanced compatibility with KDE4
M colors/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
b063e7d3 2013-02-03 22:54:09 Timothy Pearson
Rename KStyle to TDEStyle to avoid conflicts with KDE4
M ChangeLog
M style/qtc_kstyle.cpp
M style/qtc_kstyle.h
M style/qtcurve.cpp
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
f92f0552 2013-02-11 05:19:40 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5c21a294 2013-02-14 17:10:51 Timothy Pearson
Rename common header files for consistency with class renaming
A style/qtc_tdestylen.cpp
A style/qtc_tdestylen.h
M style/qtcurve.cpp
M style/qtcurve.h
R style/qtc_kstyle.cpp
R style/qtc_kstyle.h
 ** Diff limit reached (max: 250 lines) **
309278b1 2013-02-14 17:24:51 Timothy Pearson
Fix prior commit
A style/qtc_tdestyle.cpp
A style/qtc_tdestyle.h
R style/qtc_tdestylen.cpp
R style/qtc_tdestylen.h
 ** Diff limit reached (max: 250 lines) **
920ca5f8 2013-02-15 21:51:50 Timothy Pearson
Rename additional header files to avoid conflicts with KDE4
M config/exportthemedialog.cpp
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
dd8b18c0 2013-02-16 00:27:52 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d2a486b0 2013-02-16 00:27:54 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
13775367 2013-02-16 13:55:55 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c5970759 2013-02-18 14:13:32 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
317eaf0f 2013-02-19 01:11:00 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
32e7ff8c 2013-02-20 19:02:54 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
65692995 2013-02-21 15:09:38 Timothy Pearson
Second part of prior commit
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
9e635fc4 2013-04-10 23:20:54 Timothy Pearson
Fix QtCurve hang in menu headers
Clean up spurious build files
M style/qtcurve.cpp
R CMakeLists.txt.orig
R config.guess
R config.sub
 ** Diff limit reached (max: 250 lines) **
00465ed2 2013-04-18 17:53:03 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d4eaf37e 2013-05-23 18:44:42 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
538c0cd4 2013-08-18 10:23:52 Darrell Anderson
Rename KStyle to TDEStyle to avoid conflicts with KDE4.
M README
M common/common.h
M config/CMakeLists.txt
M config/qtcurveconfig.cpp
M style/CMakeLists.txt
M style/qtc_tdestyle.cpp
M style/qtc_tdestyle.h
M style/qtcurve.themerc
 ** Diff limit reached (max: 250 lines) **
452a51a3 2013-08-27 15:41:32 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7bdfaa81 2013-08-29 18:34:49 Slávek Banko
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ff9ff0b6 2013-09-03 12:58:28 Slávek Banko
Additional k => tde renaming and fixes
M admin
M po/tr.po
 ** Diff limit reached (max: 250 lines) **
4fe8ab43 2013-09-15 06:15:33 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c922c760 2013-09-15 06:15:35 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6e971471 2013-12-23 06:11:39 Slávek Banko
Rename kdewidgets => tdewidgets
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
b2f28706 2013-12-26 13:32:56 Slávek Banko
Fix FTBFS due to recent style API changes
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
7616e021 2013-12-26 17:19:57 Darrell Anderson
KDE->TDE branding cleanup.
M config/qtcurveconfigbase.ui
 ** Diff limit reached (max: 250 lines) **
7ad70d9f 2014-03-27 03:06:03 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b9da2c25 2014-03-27 03:06:06 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
193cadde 2014-03-27 05:32:42 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
5af1bdff 2014-03-28 21:23:57 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
875af025 2014-04-16 22:30:53 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7df0cb0c 2014-05-26 19:15:57 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
bb831be0 2014-05-26 21:03:32 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6213a065 2014-08-04 19:09:02 Timothy Pearson
Clean up a couple of build warnings
M common/config_file.c
M config/qtcurveconfig.cpp
 ** Diff limit reached (max: 250 lines) **
9781c41e 2014-08-07 13:04:37 Timothy Pearson
Very minor style cleanup
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
168fb1ee 2014-08-07 17:22:14 Timothy Pearson
Rename the string kde toolbar widget
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
b31e6ae7 2014-09-14 17:47:16 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
64d1e64d 2014-09-24 12:10:44 Slávek Banko
Fix remaining renaming knewstuff
M admin
 ** Diff limit reached (max: 250 lines) **
df5f851b 2014-09-28 22:40:08 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ecd6fd35 2014-09-29 11:07:06 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
3c102b74 2014-10-12 12:13:47 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
26614695 2014-10-13 18:15:21 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
31f3241d 2014-10-14 12:42:52 Automated System
Reset submodule main/applications/tde-style-qtcurve/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b91b9e50 2014-10-19 22:29:33 Automated System
Reset submodule main/applications/tde-style-qtcurve/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0ea88993 2014-11-14 21:25:54 Timothy Pearson
Fix a long-standing conflict between QtCurve's Gradient class and Libreoffice's Gradient class
This largely resolves Bug 1489
M common/common.h
M config/exportthemedialog.h
M config/qtcurveconfig.h
M style/qtcurve.h
 ** Diff limit reached (max: 250 lines) **
ef83a78f 2014-11-21 23:20:53 Timothy Pearson
Minor syntatical cleanup, no functional changes
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **
a3fbecd9 2014-11-22 13:05:22 Alex Couture
Add Breeze QtCurve theme
A themes/Breeze.qtcurve
 ** Diff limit reached (max: 250 lines) **
069b778d 2014-11-22 13:05:30 Timothy Pearson
Fix theme permissions
 ** Diff limit reached (max: 250 lines) **
bdb67986 2014-11-29 01:45:28 Alex Couture
Add evaRounded theme
A themes/Eva_Rounded.qtcurve
 ** Diff limit reached (max: 250 lines) **
a1093ee4 2014-11-29 01:45:36 Timothy Pearson
Fix theme installation
M themes/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
467c6631 2014-12-02 18:36:35 Timothy Pearson
Fix crash under Milk style
M style/qtcurve.cpp
 ** Diff limit reached (max: 250 lines) **