diff options
Diffstat (limited to 'src/kmplayerconfig.cpp')
-rw-r--r-- | src/kmplayerconfig.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kmplayerconfig.cpp b/src/kmplayerconfig.cpp index 64b6bcd..3337585 100644 --- a/src/kmplayerconfig.cpp +++ b/src/kmplayerconfig.cpp @@ -89,14 +89,14 @@ KDE_NO_CDTOR_EXPORT Settings::Settings (PartBase * player, KConfig * config) videodrivers = _vds; colors [ColorSetting::playlist_background].title = i18n ("Playlist background"); colors [ColorSetting::playlist_background].option = "PlaylistBackground"; - colors [ColorSetting::playlist_background].color = KGlobalSettings::baseColor (); + colors [ColorSetting::playlist_background].color = TDEGlobalSettings::baseColor (); colors [ColorSetting::playlist_foreground].title = i18n ("Playlist foreground"); colors [ColorSetting::playlist_foreground].option = "PlaylistForeground"; - colors [ColorSetting::playlist_foreground].color = KGlobalSettings::textColor(); + colors [ColorSetting::playlist_foreground].color = TDEGlobalSettings::textColor(); colors [ColorSetting::console_background].title =i18n("Console background"); colors [ColorSetting::playlist_active].title = i18n("Playlist active item"); colors [ColorSetting::playlist_active].option = "PlaylistActive"; - colors [ColorSetting::playlist_active].color = KGlobalSettings::linkColor(); + colors [ColorSetting::playlist_active].color = TDEGlobalSettings::linkColor(); colors [ColorSetting::console_background].option = "ConsoleBackground"; colors [ColorSetting::console_background].color = TQColor (0, 0, 0); colors [ColorSetting::console_foreground].title = i18n ("Console foreground"); @@ -110,17 +110,17 @@ KDE_NO_CDTOR_EXPORT Settings::Settings (PartBase * player, KConfig * config) colors [ColorSetting::area_background].color = TQColor (0, 0, 0); colors [ColorSetting::infowindow_background].title = i18n ("Info window background"); colors [ColorSetting::infowindow_background].option ="InfoWindowBackground"; - colors [ColorSetting::infowindow_background].color = KGlobalSettings::baseColor (); + colors [ColorSetting::infowindow_background].color = TDEGlobalSettings::baseColor (); colors [ColorSetting::infowindow_foreground].title = i18n ("Info window foreground"); colors [ColorSetting::infowindow_foreground].option ="InfoWindowForeground"; - colors [ColorSetting::infowindow_foreground].color = KGlobalSettings::textColor(); + colors [ColorSetting::infowindow_foreground].color = TDEGlobalSettings::textColor(); fonts [FontSetting::playlist].title = i18n ("Playlist"); fonts [FontSetting::playlist].option = "PlaylistFont"; - fonts [FontSetting::playlist].font = KGlobalSettings::generalFont(); + fonts [FontSetting::playlist].font = TDEGlobalSettings::generalFont(); fonts [FontSetting::playlist].font.setItalic (true); fonts [FontSetting::infowindow].title = i18n ("Info window"); fonts [FontSetting::infowindow].option = "InfoWindowFont"; - fonts [FontSetting::infowindow].font = KGlobalSettings::generalFont(); + fonts [FontSetting::infowindow].font = TDEGlobalSettings::generalFont(); } KDE_NO_CDTOR_EXPORT Settings::~Settings () { |