diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:04:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:04:32 -0600 |
commit | 793cf2dff35dffe3ec4c7b24252947dde758a1b2 (patch) | |
tree | 7d9972d99ed281a36418ae9f5fc128e3c951532c /krec/krecnewproperties.cpp | |
parent | 04f764aaf273340e1d5811d4216dd8127cacc5db (diff) | |
download | tdemultimedia-793cf2dff35dffe3ec4c7b24252947dde758a1b2.tar.gz tdemultimedia-793cf2dff35dffe3ec4c7b24252947dde758a1b2.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'krec/krecnewproperties.cpp')
-rw-r--r-- | krec/krecnewproperties.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krec/krecnewproperties.cpp b/krec/krecnewproperties.cpp index a5cdc07b..fc713a1a 100644 --- a/krec/krecnewproperties.cpp +++ b/krec/krecnewproperties.cpp @@ -17,7 +17,7 @@ #include "krecglobal.h" #include "krecconfig_fileswidget.h" -#include <kconfig.h> +#include <tdeconfig.h> #include <tqbuttongroup.h> #include <tqvbuttongroup.h> #include <tqradiobutton.h> @@ -39,7 +39,7 @@ KRecNewProperties::KRecNewProperties( TQWidget* p, const char* n ) , _samplerate( 44100 ), _channels( 2 ), _bits( 16 ) { kdDebug( 60005 ) << k_funcinfo << endl; - TDEConfig *config = KRecGlobal::kconfig(); + TDEConfig *config = KRecGlobal::tdeconfig(); config->setGroup( "FileDefaults" ); _samplerate = config->readNumEntry( "SamplingRate", 44100 ); _channels = config->readNumEntry( "Channels", 2 ); @@ -91,8 +91,8 @@ void KRecNewProperties::channelschanged( int channels ) { _channels = channels; void KRecNewProperties::bitschanged( int bits ) { _bits = bits; } void KRecNewProperties::usedefaultschanged( bool n ) { _usedefaults = n; - KRecGlobal::kconfig()->setGroup( "FileDefaults" ); - KRecGlobal::kconfig()->writeEntry( "UseDefaults", _usedefaults ); + KRecGlobal::tdeconfig()->setGroup( "FileDefaults" ); + KRecGlobal::tdeconfig()->writeEntry( "UseDefaults", _usedefaults ); } void KRecNewProperties::done( int r ) { |