Rename additional KDE strings

pull/1/head
Timothy Pearson 13 years ago
parent ec19b9a184
commit dd3d53e709

@ -102,9 +102,9 @@ configure_file (config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
set(DATA_INSTALL_DIR ${KDE3PREFIX}/share/apps) set(DATA_INSTALL_DIR ${KDE3PREFIX}/share/apps)
if(QTC_DEFAULT_TO_KDE3) if(QTC_DEFAULT_TO_KDE3)
message("INFO: Defaulting to reading KDE3 settings if KDE_SESSION_VERSION is not set") message("INFO: Defaulting to reading KDE3 settings if TDE_SESSION_VERSION is not set")
else(QTC_DEFAULT_TO_KDE3) else(QTC_DEFAULT_TO_KDE3)
message("INFO: Defaulting to reading KDE4 settings if KDE_SESSION_VERSION is not set") message("INFO: Defaulting to reading KDE4 settings if TDE_SESSION_VERSION is not set")
endif(QTC_DEFAULT_TO_KDE3) endif(QTC_DEFAULT_TO_KDE3)
add_subdirectory(style) add_subdirectory(style)

@ -173,7 +173,7 @@
6. Modify defaults: 6. Modify defaults:
Scrollbars outside of scrollview (Gtk/oxygen style) Scrollbars outside of scrollview (Gtk/oxygen style)
Thin scrollbar groove. Thin scrollbar groove.
7. Use KDE_SESSION_VERSION to determine which KDE prefix (KDE3, or KDE4) to 7. Use TDE_SESSION_VERSION to determine which KDE prefix (KDE3, or KDE4) to
seach first for qtc_xxx.themerc files. seach first for qtc_xxx.themerc files.
8. Update Klearlooks to be more consistent with Clearlooks (lighten tab background, 8. Update Klearlooks to be more consistent with Clearlooks (lighten tab background,
use highlight strip on active tab, dont colour active tab) use highlight strip on active tab, dont colour active tab)
@ -236,7 +236,7 @@
11. Modified how button, and combo, heights are calculated - no longer set a 11. Modified how button, and combo, heights are calculated - no longer set a
minimum height. minimum height.
12. Fix some re-draw errors with thin scrollbar grooves. 12. Fix some re-draw errors with thin scrollbar grooves.
13. Default to reading KDE4 settings if KDE_SESSION_VERSION is not set. 13. Default to reading KDE4 settings if TDE_SESSION_VERSION is not set.
Pass -DQTC_DEFAULT_TO_KDE3=true to cmake to force this to default to KDE3. Pass -DQTC_DEFAULT_TO_KDE3=true to cmake to force this to default to KDE3.
14. Call kde-config / kde4-config to ascertain users TDEHOME. 14. Call kde-config / kde4-config to ascertain users TDEHOME.
15. Fix slight redraw error with glow style mouse over tabs. 15. Fix slight redraw error with glow style mouse over tabs.
@ -271,7 +271,7 @@
setting. setting.
15. Fix kaffeine's slider benig completely filled at start of song. 15. Fix kaffeine's slider benig completely filled at start of song.
16. Fix LineEdit in qtconfig. 16. Fix LineEdit in qtconfig.
17. Under KDE4 (KDE_SESSION_VERSION>=4), default hover/focus colours to the 17. Under KDE4 (TDE_SESSION_VERSION>=4), default hover/focus colours to the
KDE4 defaults. KDE4 defaults.
0.63.0 0.63.0
@ -729,7 +729,7 @@
Tab appearance Tab appearance
Listview appearance Listview appearance
Slider appearance Slider appearance
2. If KDE_SESSION_VERSION is set to >=4, then read settings from 2. If TDE_SESSION_VERSION is set to >=4, then read settings from
$XDG_CONFIG_HOME/TrollTech.conf. This only affects Qt-only $XDG_CONFIG_HOME/TrollTech.conf. This only affects Qt-only
applications - KDE apps should not be affected. applications - KDE apps should not be affected.
3. Lighten focus rectangle. 3. Lighten focus rectangle.

@ -19,7 +19,7 @@ The following options may be supplied to cmake:
Build KDE3 config module. NOTE: This is no longer maintained. Build KDE3 config module. NOTE: This is no longer maintained.
-DQTC_DEFAULT_TO_KDE3=true -DQTC_DEFAULT_TO_KDE3=true
If the KDE_SESSION_VERSION is not set, then assume we are running If the TDE_SESSION_VERSION is not set, then assume we are running
under KDE3. If this cmake option is not set, then KDE4 is assumed. under KDE3. If this cmake option is not set, then KDE4 is assumed.
-DQTC_STYLE_SUPPORT=true -DQTC_STYLE_SUPPORT=true

@ -190,7 +190,7 @@ static bool useTQt3Settings()
if(0==ver) if(0==ver)
{ {
const char *sessionVersion=getenv("KDE_SESSION_VERSION"); const char *sessionVersion=getenv("TDE_SESSION_VERSION");
ver=sessionVersion ver=sessionVersion
? atoi(sessionVersion)<4 ? atoi(sessionVersion)<4
@ -279,7 +279,7 @@ static TQString kdeHome(bool trinity=false)
// Try env vars... // Try env vars...
if(kdeHome[trinity ? 0 : 1].isEmpty()) if(kdeHome[trinity ? 0 : 1].isEmpty())
{ {
kdeHome[trinity ? 0 : 1]=readEnvPath(getuid() ? "TDEHOME" : "KDEROOTHOME"); kdeHome[trinity ? 0 : 1]=readEnvPath(getuid() ? "TDEHOME" : "TDEROOTHOME");
if (kdeHome[trinity ? 0 : 1].isEmpty()) if (kdeHome[trinity ? 0 : 1].isEmpty())
{ {
TQDir homeDir(TQDir::homeDirPath()); TQDir homeDir(TQDir::homeDirPath());

Loading…
Cancel
Save