summaryrefslogtreecommitdiffstats
path: root/src/htmlwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlwidget.cpp')
-rw-r--r--src/htmlwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmlwidget.cpp b/src/htmlwidget.cpp
index 6c4cb8c..651fc85 100644
--- a/src/htmlwidget.cpp
+++ b/src/htmlwidget.cpp
@@ -118,7 +118,7 @@ void HTMLWidget::loadManPage( const bool localManPage )
// ============
void HTMLWidget::readSettings( )
-{ TDEConfig* config = kapp->config( );
+{ TDEConfig* config = tdeApp->config( );
config->setGroup( "General" );
m_zoomFactor = config->readDoubleNumEntry( "zoomFactor", 100.0 );
m_stylesheetURL.setPath( config->readPathEntry( "stylesheetURL" ));
@@ -136,7 +136,7 @@ void HTMLWidget::resizeEvent( TQResizeEvent* event )
// ============
void HTMLWidget::saveSettings( )
-{ TDEConfig* config = kapp->config( );
+{ TDEConfig* config = tdeApp->config( );
config->setGroup( "General" );
config->writeEntry( "stylesheetURL", m_stylesheetURL.path( ));
config->writeEntry( "zoomFactor", m_zoomFactor );