diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-06-04 12:34:06 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-06-04 12:34:06 +0200 |
commit | a410cb031faef27b87337dbd2600083add7dce97 (patch) | |
tree | 72ea86b0fe3c1fcf3ea75f41c6978c88684b8c4a /src/dialogs/qcolordialog.cpp | |
parent | d3b13515ef865fe7304afaa7a119cf326f2c774d (diff) | |
download | tqt-a410cb031faef27b87337dbd2600083add7dce97.tar.gz tqt-a410cb031faef27b87337dbd2600083add7dce97.zip |
Rename tqt-kde integration to tqt-tde.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/dialogs/qcolordialog.cpp')
-rw-r--r-- | src/dialogs/qcolordialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dialogs/qcolordialog.cpp b/src/dialogs/qcolordialog.cpp index 281445c2e..12efeb3f9 100644 --- a/src/dialogs/qcolordialog.cpp +++ b/src/dialogs/qcolordialog.cpp @@ -64,7 +64,7 @@ TQColor macGetColor( const TQColor& initial, TQWidget *parent, const char *name #endif #ifdef Q_WS_X11 -#include "private/tqtkdeintegration_x11_p.h" +#include "private/tqttdeintegration_x11_p.h" #endif //////////// TQWellArray BEGIN @@ -1486,8 +1486,8 @@ TQColor TQColorDialog::getColor( const TQColor& initial, TQWidget *parent, const char *name ) { #if defined(Q_WS_X11) - if( TQKDEIntegration::enabled()) - return TQKDEIntegration::getColor( initial, parent, name ); + if( TQTDEIntegration::enabled()) + return TQTDEIntegration::getColor( initial, parent, name ); #elif defined(Q_WS_MAC) return macGetColor(initial, parent, name); #endif @@ -1526,8 +1526,8 @@ TQRgb TQColorDialog::getRgba( TQRgb initial, bool *ok, TQWidget *parent, const char* name ) { #if defined(Q_WS_MAC) - if( TQKDEIntegration::enabled()) { - TQColor color = TQKDEIntegration::getColor( TQColor( initial ), parent, name ); + if( TQTDEIntegration::enabled()) { + TQColor color = TQTDEIntegration::getColor( TQColor( initial ), parent, name ); if( ok ) *ok = color.isValid(); return color.rgba(); |