summaryrefslogtreecommitdiffstats
path: root/krusader/Dialogs/packguibase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/Dialogs/packguibase.cpp')
-rw-r--r--krusader/Dialogs/packguibase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krusader/Dialogs/packguibase.cpp b/krusader/Dialogs/packguibase.cpp
index 69d6730..21cd400 100644
--- a/krusader/Dialogs/packguibase.cpp
+++ b/krusader/Dialogs/packguibase.cpp
@@ -329,12 +329,12 @@ void PackGUIBase::expand() {
void PackGUIBase::checkConsistency() {
if( password->text().isEmpty() && passwordAgain->text().isEmpty()) {
- passwordConsistencyLabel->setPaletteForegroundColor( KGlobalSettings::textColor() );
+ passwordConsistencyLabel->setPaletteForegroundColor( TDEGlobalSettings::textColor() );
passwordConsistencyLabel->setText( i18n( "No password specified" ) );
}
else
if( password->text() == passwordAgain->text() ) {
- passwordConsistencyLabel->setPaletteForegroundColor( KGlobalSettings::textColor() );
+ passwordConsistencyLabel->setPaletteForegroundColor( TDEGlobalSettings::textColor() );
passwordConsistencyLabel->setText( i18n( "The passwords are equal" ) );
}
else {