summaryrefslogtreecommitdiffstats
path: root/src/gui/general
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/general')
-rw-r--r--src/gui/general/EditViewBase.cpp2
-rw-r--r--src/gui/general/GUIPalette.cpp2
-rw-r--r--src/gui/general/MidiPitchLabel.cpp2
-rw-r--r--src/gui/general/PresetHandlerDialog.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/general/EditViewBase.cpp b/src/gui/general/EditViewBase.cpp
index ca6bc80..2dbe898 100644
--- a/src/gui/general/EditViewBase.cpp
+++ b/src/gui/general/EditViewBase.cpp
@@ -79,7 +79,7 @@ EditViewBase::EditViewBase(RosegardenGUIDoc *doc,
KDockMainWindow(parent, name),
m_viewNumber( -1),
m_viewLocalPropertyPrefix(makeViewLocalPropertyPrefix()),
- m_config(kapp->config()),
+ m_config(tdeApp->config()),
m_doc(doc),
m_segments(segments),
m_tool(0),
diff --git a/src/gui/general/GUIPalette.cpp b/src/gui/general/GUIPalette.cpp
index c34fece..6a10d0b 100644
--- a/src/gui/general/GUIPalette.cpp
+++ b/src/gui/general/GUIPalette.cpp
@@ -35,7 +35,7 @@ namespace Rosegarden
TQColor GUIPalette::getColour(const char* const colourName)
{
- TDEConfig* config = kapp->config();
+ TDEConfig* config = tdeApp->config();
config->setGroup(ColoursConfigGroup);
TQColor res = getInstance()->m_defaultsMap[colourName];
diff --git a/src/gui/general/MidiPitchLabel.cpp b/src/gui/general/MidiPitchLabel.cpp
index 4d682e8..e045848 100644
--- a/src/gui/general/MidiPitchLabel.cpp
+++ b/src/gui/general/MidiPitchLabel.cpp
@@ -48,7 +48,7 @@ MidiPitchLabel::MidiPitchLabel(int pitch)
} else {
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup(GeneralOptionsConfigGroup);
int baseOctave = config->readNumEntry("midipitchoctave", -2);
diff --git a/src/gui/general/PresetHandlerDialog.cpp b/src/gui/general/PresetHandlerDialog.cpp
index 9b02ef3..56692b1 100644
--- a/src/gui/general/PresetHandlerDialog.cpp
+++ b/src/gui/general/PresetHandlerDialog.cpp
@@ -52,7 +52,7 @@ namespace Rosegarden
PresetHandlerDialog::PresetHandlerDialog(TQWidget *parent, bool fromNotation)
: KDialogBase(parent, "presethandlerdialog", true, i18n("Load track parameters preset"), Ok | Cancel, Ok),
- m_config(kapp->config()),
+ m_config(tdeApp->config()),
m_fromNotation(fromNotation)
{
m_presets = new PresetGroup();