summaryrefslogtreecommitdiffstats
path: root/src/commands/edit
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:13:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:13:55 -0600
commit5e6e2fd8352a86fb70f804472a6346868483623a (patch)
treedfc010a4f5fb5624b094cdb01295591c8879debf /src/commands/edit
parent59ff04ffaf48f18383b39ea6da17b8e18b6b50c3 (diff)
downloadrosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.tar.gz
rosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/commands/edit')
-rw-r--r--src/commands/edit/EventQuantizeCommand.cpp4
-rw-r--r--src/commands/edit/EventQuantizeCommand.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/edit/EventQuantizeCommand.cpp b/src/commands/edit/EventQuantizeCommand.cpp
index 4be8163..965f550 100644
--- a/src/commands/edit/EventQuantizeCommand.cpp
+++ b/src/commands/edit/EventQuantizeCommand.cpp
@@ -134,7 +134,7 @@ EventQuantizeCommand::modifySegment()
if (!m_configGroup.isNull()) {
//!!! need way to decide whether to do these even if no config group (i.e. through args to the command)
- KConfig *config = kapp->config();
+ TDEConfig *config = kapp->config();
config->setGroup(m_configGroup);
rebeam = config->readBoolEntry("quantizerebeam", true);
@@ -204,7 +204,7 @@ EventQuantizeCommand::makeQuantizer(TQString configGroup,
//!!! Excessive duplication with
// QuantizeParameters::getQuantizer in widgets.cpp
- KConfig *config = kapp->config();
+ TDEConfig *config = kapp->config();
config->setGroup(configGroup);
timeT defaultUnit =
diff --git a/src/commands/edit/EventQuantizeCommand.h b/src/commands/edit/EventQuantizeCommand.h
index 09ae1a7..0423ed5 100644
--- a/src/commands/edit/EventQuantizeCommand.h
+++ b/src/commands/edit/EventQuantizeCommand.h
@@ -58,14 +58,14 @@ public:
EventQuantizeCommand(EventSelection &selection,
Quantizer *);
- /// Constructs own quantizer based on KConfig data in given group
+ /// Constructs own quantizer based on TDEConfig data in given group
EventQuantizeCommand(Segment &segment,
timeT startTime,
timeT endTime,
TQString configGroup,
bool notationDefault);
- /// Constructs own quantizer based on KConfig data in given group
+ /// Constructs own quantizer based on TDEConfig data in given group
EventQuantizeCommand(EventSelection &selection,
TQString configGroup,
bool notationDefault);