summaryrefslogtreecommitdiffstats
path: root/src/gui/oscilloscope.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/oscilloscope.cpp')
-rw-r--r--src/gui/oscilloscope.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/oscilloscope.cpp b/src/gui/oscilloscope.cpp
index 6206134..2935e7a 100644
--- a/src/gui/oscilloscope.cpp
+++ b/src/gui/oscilloscope.cpp
@@ -82,8 +82,8 @@ Oscilloscope::Oscilloscope( KateMDI::ToolView * parent )
connect( updateScrollTmr, TQT_SIGNAL(timeout()), this, TQT_SLOT(updateScrollbars()) );
updateScrollTmr->start(20);
- KGlobal::config()->setGroup("Oscilloscope");
- setZoomLevel( KGlobal::config()->readDoubleNumEntry( "ZoomLevel", 0.5 ) );
+ TDEGlobal::config()->setGroup("Oscilloscope");
+ setZoomLevel( TDEGlobal::config()->readDoubleNumEntry( "ZoomLevel", 0.5 ) );
connect( this, TQT_SIGNAL(probeRegistered(int, ProbeData *)), probePositioner, TQT_SLOT(slotProbeDataRegistered(int, ProbeData *)) );
connect( this, TQT_SIGNAL(probeUnregistered(int )), probePositioner, TQT_SLOT(slotProbeDataUnregistered(int )) );
@@ -119,8 +119,8 @@ void Oscilloscope::setZoomLevel( double zoomLevel )
else if ( zoomLevel > 1.0 )
zoomLevel = 1.0;
- KGlobal::config()->setGroup("Oscilloscope");
- KGlobal::config()->writeEntry( "ZoomLevel", zoomLevel );
+ TDEGlobal::config()->setGroup("Oscilloscope");
+ TDEGlobal::config()->writeEntry( "ZoomLevel", zoomLevel );
// We want to maintain the position of the *center* of the view, not the
// left edge, so have to record time at center of view... We also have to
@@ -332,7 +332,7 @@ void addOscilloscopeAsToolView( KTechlab *ktechlab )
KateMDI::ToolView * tv;
tv = ktechlab->createToolView( Oscilloscope::toolViewIdentifier(),
KMultiTabBar::Bottom,
- KGlobal::iconLoader()->loadIcon( "oscilloscope", KIcon::Small ),
+ TDEGlobal::iconLoader()->loadIcon( "oscilloscope", KIcon::Small ),
i18n("Oscilloscope") );
Oscilloscope::self(tv);