diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /kaddressbook/views/configuretableviewdialog.cpp | |
parent | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff) | |
download | tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kaddressbook/views/configuretableviewdialog.cpp')
-rw-r--r-- | kaddressbook/views/configuretableviewdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kaddressbook/views/configuretableviewdialog.cpp b/kaddressbook/views/configuretableviewdialog.cpp index a8359884b..987feb17d 100644 --- a/kaddressbook/views/configuretableviewdialog.cpp +++ b/kaddressbook/views/configuretableviewdialog.cpp @@ -56,14 +56,14 @@ ConfigureTableViewWidget::~ConfigureTableViewWidget() { } -void ConfigureTableViewWidget::restoreSettings( KConfig *config ) +void ConfigureTableViewWidget::restoreSettings( TDEConfig *config ) { ViewConfigureWidget::restoreSettings( config ); mPage->restoreSettings( config ); } -void ConfigureTableViewWidget::saveSettings( KConfig *config ) +void ConfigureTableViewWidget::saveSettings( TDEConfig *config ) { ViewConfigureWidget::saveSettings( config ); @@ -81,7 +81,7 @@ LookAndFeelPage::LookAndFeelPage(TQWidget *parent, const char *name) enableBackgroundToggled(mBackgroundBox->isChecked()); } -void LookAndFeelPage::restoreSettings( KConfig *config ) +void LookAndFeelPage::restoreSettings( TDEConfig *config ) { mAlternateButton->setChecked(config->readBoolEntry("ABackground", true)); mLineButton->setChecked(config->readBoolEntry("SingleLine", false)); @@ -97,7 +97,7 @@ void LookAndFeelPage::restoreSettings( KConfig *config ) #endif } -void LookAndFeelPage::saveSettings( KConfig *config ) +void LookAndFeelPage::saveSettings( TDEConfig *config ) { config->writeEntry("ABackground", mAlternateButton->isChecked()); config->writeEntry("SingleLine", mLineButton->isChecked()); |