summaryrefslogtreecommitdiffstats
path: root/kicker
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-17 21:15:44 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 03:26:19 +0200
commit6ca5e6d65a74d794637953bfea85c42e3bf828dd (patch)
tree57e00a5a9247fe7e5f0dbc23d9502eb13eb4aec7 /kicker
parentb445f15b35cf121d47fcad4547f6c96bbd31a52f (diff)
downloadtdebase-6ca5e6d65a74d794637953bfea85c42e3bf828dd.tar.gz
tdebase-6ca5e6d65a74d794637953bfea85c42e3bf828dd.zip
Fix tdebase FTBFS
(cherry picked from commit b92f4fbd165f03685928a50d85c34ba8729b7c48)
Diffstat (limited to 'kicker')
-rw-r--r--kicker/applets/clock/clockapplet.kcfg2
-rw-r--r--kicker/kicker/core/containerarea.h2
-rw-r--r--kicker/kicker/core/containerarealayout.cpp2
-rw-r--r--kicker/kicker/core/containerarealayout.h2
-rw-r--r--kicker/kicker/core/extensionSettings.kcfg2
-rw-r--r--kicker/taskbar/taskcontainer.cpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/kicker/applets/clock/clockapplet.kcfg b/kicker/applets/clock/clockapplet.kcfg
index ed375d03a..6abd26ceb 100644
--- a/kicker/applets/clock/clockapplet.kcfg
+++ b/kicker/applets/clock/clockapplet.kcfg
@@ -29,7 +29,7 @@
<entry name="DateFont" type="Font" key="Font">
<label>Font for the clock.</label>
<code>
-QFont defFont=KGlobalSettings::generalFont();
+TQFont defFont=KGlobalSettings::generalFont();
defFont.setPointSize(8);
</code>
<default code="true">defFont</default>
diff --git a/kicker/kicker/core/containerarea.h b/kicker/kicker/core/containerarea.h
index f8532b511..3dc494798 100644
--- a/kicker/kicker/core/containerarea.h
+++ b/kicker/kicker/core/containerarea.h
@@ -153,7 +153,7 @@ private:
KConfig* _config;
DragIndicator* _dragIndicator;
BaseContainer* _dragMoveAC;
- QPoint _dragMoveOffset;
+ TQPoint _dragMoveOffset;
TQPopupMenu* m_opMenu;
KRootPixmap* _rootPixmap;
bool _transparent;
diff --git a/kicker/kicker/core/containerarealayout.cpp b/kicker/kicker/core/containerarealayout.cpp
index ae4cca873..e33a78518 100644
--- a/kicker/kicker/core/containerarealayout.cpp
+++ b/kicker/kicker/core/containerarealayout.cpp
@@ -243,7 +243,7 @@ TQLayoutItem* ContainerAreaLayout::takeAt(int index) {
}
#endif // USE_QT4
-void ContainerAreaLayout::addItem(QLayoutItem* item)
+void ContainerAreaLayout::addItem(TQLayoutItem* item)
{
m_items.append(new ContainerAreaLayoutItem(static_cast<TQLayoutItem*>(item), this));
}
diff --git a/kicker/kicker/core/containerarealayout.h b/kicker/kicker/core/containerarealayout.h
index d91113660..41a104929 100644
--- a/kicker/kicker/core/containerarealayout.h
+++ b/kicker/kicker/core/containerarealayout.h
@@ -79,7 +79,7 @@ class ContainerAreaLayout : public TQLayout
ContainerAreaLayout(TQWidget* parent);
- void addItem(QLayoutItem* item);
+ void addItem(TQLayoutItem* item);
void insertIntoFreeSpace(TQWidget* item, TQPoint insertionPoint);
TQStringList listItems() const;
TQWidget* widgetAt(int index) const;
diff --git a/kicker/kicker/core/extensionSettings.kcfg b/kicker/kicker/core/extensionSettings.kcfg
index 89d60b05a..466f30ce7 100644
--- a/kicker/kicker/core/extensionSettings.kcfg
+++ b/kicker/kicker/core/extensionSettings.kcfg
@@ -30,7 +30,7 @@
<entry name="XineramaScreen" type="Int">
<label>Primary xinerama screen</label>
- <default code="true">QApplication::desktop()->primaryScreen()</default>
+ <default code="true">TQApplication::desktop()->primaryScreen()</default>
</entry>
<entry name="HideButtonSize" type="Int" >
diff --git a/kicker/taskbar/taskcontainer.cpp b/kicker/taskbar/taskcontainer.cpp
index 037f65b68..724c44ab9 100644
--- a/kicker/taskbar/taskcontainer.cpp
+++ b/kicker/taskbar/taskcontainer.cpp
@@ -733,7 +733,7 @@ void TaskContainer::drawButton(TQPainter *p)
KImageEffect::blend(img, timg, *taskBar->blendGradient(size()), KImageEffect::Red);
// End painting before assigning the pixmap
- QPaintDevice* opd = p->device();
+ TQPaintDevice* opd = p->device();
p->end();
pm->convertFromImage(img);
p->tqbegin(opd ,this);