summaryrefslogtreecommitdiffstats
path: root/kimagemapeditor
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 18:58:56 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 18:58:56 -0600
commit997aa1672a07ce33c6696bd4a4124bfff97036e1 (patch)
tree4b3293e6e9d7a3f6a2427f364842a8c98d94053d /kimagemapeditor
parent89b151579c08c1a567b1a4e687a143489f70045f (diff)
downloadtdewebdev-997aa1672a07ce33c6696bd4a4124bfff97036e1.tar.gz
tdewebdev-997aa1672a07ce33c6696bd4a4124bfff97036e1.zip
Rename KDE_VERSION to TDE_VERSION
Diffstat (limited to 'kimagemapeditor')
-rw-r--r--kimagemapeditor/kimagemapeditor.cpp6
-rw-r--r--kimagemapeditor/kimagemapeditor.h4
-rw-r--r--kimagemapeditor/kimecommands.cpp14
-rw-r--r--kimagemapeditor/kimecommands.h14
-rw-r--r--kimagemapeditor/kimeshell.cpp4
5 files changed, 21 insertions, 21 deletions
diff --git a/kimagemapeditor/kimagemapeditor.cpp b/kimagemapeditor/kimagemapeditor.cpp
index 5a57b250..6dbb1a32 100644
--- a/kimagemapeditor/kimagemapeditor.cpp
+++ b/kimagemapeditor/kimagemapeditor.cpp
@@ -201,7 +201,7 @@ KImageMapEditor::KImageMapEditor(TQWidget *parentWidget, const char *,
KImageMapEditor::~KImageMapEditor() {
writeConfig();
- #if KDE_VERSION < 300
+ #if TDE_VERSION < 300
delete accel;
#endif
delete areas;
@@ -628,7 +628,7 @@ void KImageMapEditor::setupActions()
"Click this to remove points from a polygon."));
removePointAction->setExclusiveGroup("drawing");
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KAction *cancelAction =
#endif
new KAction(i18n("Cancel Drawing"), Key_Escape, this, TQT_SLOT( slotCancelDrawing() ),
@@ -657,7 +657,7 @@ void KImageMapEditor::setupActions()
decreaseHeightAction = new KAction(i18n("Decrease Height"), Key_Down + SHIFT, this, TQT_SLOT( slotDecreaseHeight() ),
actionCollection() , "decreaseheight" );
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
accel = new KAccel(widget());
cancelAction->plugAccel(accel, true);
moveLeftAction->plugAccel(accel, true);
diff --git a/kimagemapeditor/kimagemapeditor.h b/kimagemapeditor/kimagemapeditor.h
index e3a3655a..a2839a7f 100644
--- a/kimagemapeditor/kimagemapeditor.h
+++ b/kimagemapeditor/kimagemapeditor.h
@@ -111,7 +111,7 @@ class KSelectAction;
class KRadioAction;
class KRecentFilesAction;
class KAction;
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
class KAccel;
#endif
///class TQListViewItem;
@@ -309,7 +309,7 @@ private:
KRecentFilesAction* recentFilesAction;
- #if KDE_VERSION < 300
+ #if TDE_VERSION < 300
KAccel *accel;
#endif
diff --git a/kimagemapeditor/kimecommands.cpp b/kimagemapeditor/kimecommands.cpp
index e47f1b8f..817d8b7d 100644
--- a/kimagemapeditor/kimecommands.cpp
+++ b/kimagemapeditor/kimecommands.cpp
@@ -25,7 +25,7 @@
CutCommand::CutCommand(KImageMapEditor * document, const AreaSelection & a)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -79,7 +79,7 @@ DeleteCommand::DeleteCommand(KImageMapEditor * document, const AreaSelection & a
PasteCommand::PasteCommand(KImageMapEditor *document, const AreaSelection & a)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -124,7 +124,7 @@ void PasteCommand::unexecute()
MoveCommand::MoveCommand (KImageMapEditor *document, AreaSelection * a, const TQPoint & oldPoint)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -186,7 +186,7 @@ void MoveCommand::unexecute()
ResizeCommand::ResizeCommand (KImageMapEditor *document, AreaSelection *a, Area *oldArea)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -233,7 +233,7 @@ void ResizeCommand::unexecute()
AddPointCommand::AddPointCommand (KImageMapEditor *document, AreaSelection *a, const TQPoint & p)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -282,7 +282,7 @@ void AddPointCommand::unexecute()
RemovePointCommand::RemovePointCommand (KImageMapEditor *document, AreaSelection *a, Area *oldArea)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -335,7 +335,7 @@ void RemovePointCommand::unexecute()
CreateCommand::CreateCommand (KImageMapEditor *document, Area *area)
:
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
diff --git a/kimagemapeditor/kimecommands.h b/kimagemapeditor/kimecommands.h
index 87b5b87b..48ab352c 100644
--- a/kimagemapeditor/kimecommands.h
+++ b/kimagemapeditor/kimecommands.h
@@ -30,7 +30,7 @@ class AreaSelection;
class CutCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -61,7 +61,7 @@ class DeleteCommand : public CutCommand
};
class PasteCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -83,7 +83,7 @@ KNamedCommand
};
class MoveCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -106,7 +106,7 @@ KNamedCommand
};
class ResizeCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -128,7 +128,7 @@ KNamedCommand
};
class AddPointCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -150,7 +150,7 @@ KNamedCommand
};
class RemovePointCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
@@ -173,7 +173,7 @@ KNamedCommand
class CreateCommand : public
-#if KDE_VERSION < 300
+#if TDE_VERSION < 300
KCommand
#else
KNamedCommand
diff --git a/kimagemapeditor/kimeshell.cpp b/kimagemapeditor/kimeshell.cpp
index 7d92e8fb..70e97757 100644
--- a/kimagemapeditor/kimeshell.cpp
+++ b/kimagemapeditor/kimeshell.cpp
@@ -247,7 +247,7 @@ void KimeShell::optionsConfigureKeys() {
void KimeShell::optionsConfigureToolbars()
{
#if defined(KDE_MAKE_VERSION)
-# if KDE_VERSION >= KDE_MAKE_VERSION(3,1,0)
+# if TDE_VERSION >= KDE_MAKE_VERSION(3,1,0)
saveMainWindowSettings(KGlobal::config(), autoSaveGroup());
# else
saveMainWindowSettings(KGlobal::config() );
@@ -266,7 +266,7 @@ void KimeShell::optionsConfigureToolbars()
void KimeShell::applyNewToolbarConfig()
{
#if defined(KDE_MAKE_VERSION)
-# if KDE_VERSION >= KDE_MAKE_VERSION(3,1,0)
+# if TDE_VERSION >= KDE_MAKE_VERSION(3,1,0)
applyMainWindowSettings(KGlobal::config(), autoSaveGroup());
# else
applyMainWindowSettings(KGlobal::config());