diff options
Diffstat (limited to 'kopete/plugins/latex/latexpreferences.cpp')
-rw-r--r-- | kopete/plugins/latex/latexpreferences.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/plugins/latex/latexpreferences.cpp b/kopete/plugins/latex/latexpreferences.cpp index ff02c831..09c388e7 100644 --- a/kopete/plugins/latex/latexpreferences.cpp +++ b/kopete/plugins/latex/latexpreferences.cpp @@ -31,7 +31,7 @@ typedef KGenericFactory<LatexPreferences> LatexPreferencesFactory; K_EXPORT_COMPONENT_FACTORY( kcm_kopete_latex, LatexPreferencesFactory( "kcm_kopete_latex" ) ) LatexPreferences::LatexPreferences(TQWidget *parent, const char* /*name*/, const TQStringList &args) - : KCModule(LatexPreferencesFactory::instance(), parent, args) + : TDECModule(LatexPreferencesFactory::instance(), parent, args) { ( new TQVBoxLayout( this ) )->setAutoAdd( true ); m_preferencesDialog = new LatexPrefsUI(this); @@ -55,12 +55,12 @@ void LatexPreferences::load() // load widgets here m_preferencesDialog->horizontalDPI->setValue(LatexConfig::self()->horizontalDPI()); m_preferencesDialog->verticalDPI->setValue(LatexConfig::self()->verticalDPI()); - emit KCModule::changed(false); + emit TDECModule::changed(false); } void LatexPreferences::slotModified() { - emit KCModule::changed(true); + emit TDECModule::changed(true); } void LatexPreferences::save() @@ -68,7 +68,7 @@ void LatexPreferences::save() LatexConfig::self()->setHorizontalDPI(m_preferencesDialog->horizontalDPI->value()); LatexConfig::self()->setVerticalDPI(m_preferencesDialog->verticalDPI->value()); LatexConfig::self()->writeConfig(); - emit KCModule::changed(false); + emit TDECModule::changed(false); } #include "latexpreferences.moc" |