summaryrefslogtreecommitdiffstats
path: root/src/gui/oscilloscopeview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:25:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:25:21 -0600
commitb0a967eb693adc458fdf7d070379b8c1ec3e9415 (patch)
tree69fa22da8d08920ca8b1049861711e77a55512b9 /src/gui/oscilloscopeview.cpp
parenta19dd7fc8e64bebb22b87a2d3a9a2601b662b35d (diff)
downloadktechlab-b0a967eb693adc458fdf7d070379b8c1ec3e9415.tar.gz
ktechlab-b0a967eb693adc458fdf7d070379b8c1ec3e9415.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/gui/oscilloscopeview.cpp')
-rw-r--r--src/gui/oscilloscopeview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/oscilloscopeview.cpp b/src/gui/oscilloscopeview.cpp
index e42af21..b2535ae 100644
--- a/src/gui/oscilloscopeview.cpp
+++ b/src/gui/oscilloscopeview.cpp
@@ -47,8 +47,8 @@ OscilloscopeView::OscilloscopeView( TQWidget *parent, const char *name )
m_pSimulator( Simulator::self() ),
m_halfOutputHeight(0.0)
{
- KGlobal::config()->setGroup("Oscilloscope");
- m_fps = KGlobal::config()->readNumEntry( "FPS", 25 );
+ TDEGlobal::config()->setGroup("Oscilloscope");
+ m_fps = TDEGlobal::config()->readNumEntry( "FPS", 25 );
setBackgroundMode(NoBackground);
setMouseTracking(true);
@@ -176,8 +176,8 @@ void OscilloscopeView::mouseReleaseEvent( TQMouseEvent *event )
void OscilloscopeView::slotSetFrameRate( int fps )
{
m_fps = fps;
- KGlobal::config()->setGroup("Oscilloscope");
- KGlobal::config()->writeEntry( "FPS", m_fps );
+ TDEGlobal::config()->setGroup("Oscilloscope");
+ TDEGlobal::config()->writeEntry( "FPS", m_fps );
}