diff options
author | Michele Calgaro <[email protected]> | 2023-09-12 21:15:21 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-12 21:15:21 +0900 |
commit | 2f0c2ae7b5a9144566dad971c4231709d19ece7a (patch) | |
tree | e07bfa2b03d2a99a8a599f0ea4f0fea3c20ee1e2 /kicker/libkicker | |
parent | 9ba68726b5f486af09b7e1d6dd3cd2a8394e2ea4 (diff) | |
download | tdebase-2f0c2ae7b5a9144566dad971c4231709d19ece7a.tar.gz tdebase-2f0c2ae7b5a9144566dad971c4231709d19ece7a.zip |
Replace various tqtinterface's TQ_* defines with actual types
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kicker/libkicker')
-rw-r--r-- | kicker/libkicker/panelbutton.cpp | 2 | ||||
-rw-r--r-- | kicker/libkicker/panelbutton.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kicker/libkicker/panelbutton.cpp b/kicker/libkicker/panelbutton.cpp index 93674f394..b7b7ba457 100644 --- a/kicker/libkicker/panelbutton.cpp +++ b/kicker/libkicker/panelbutton.cpp @@ -196,7 +196,7 @@ void PanelButton::setPopupDirection(KPanelApplet::Direction d) setArrowDirection(KickerLib::directionToPopupPosition(d)); } -void PanelButton::setIconAlignment(TQ_Alignment align) +void PanelButton::setIconAlignment(Qt::AlignmentFlags align) { m_iconAlignment = align; update(); diff --git a/kicker/libkicker/panelbutton.h b/kicker/libkicker/panelbutton.h index 7bba68dc7..5df1c62b6 100644 --- a/kicker/libkicker/panelbutton.h +++ b/kicker/libkicker/panelbutton.h @@ -263,7 +263,7 @@ public slots: protected: - void setIconAlignment(TQ_Alignment align); + void setIconAlignment(Qt::AlignmentFlags align); /** * Subclasses must implement this to define the name of the button which is * used to identify this button for saving and loading. It must be unique @@ -406,7 +406,7 @@ private: TQPixmap m_iconz; // mouse over KPanelExtension::Position m_arrowDirection; KPanelApplet::Direction m_popupDirection; - TQ_Alignment m_iconAlignment; + Qt::AlignmentFlags m_iconAlignment; Orientation m_orientation; int m_size; double m_fontPercent; |