diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 23:01:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 23:59:58 +0900 |
| commit | b9186693ada54762210d51282c15e2248e76a586 (patch) | |
| tree | 6e7e82a9639e67a50aa121eb08b8d7c1f6ba0229 /src/newui/button.cpp | |
| parent | f12db681be834f7027132156c05afcbcb2346278 (diff) | |
| download | tdevelop-b9186693.tar.gz tdevelop-b9186693.zip | |
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 61cd5b18f00b0d36a7953596c5295e358324ebb7)
Diffstat (limited to 'src/newui/button.cpp')
| -rw-r--r-- | src/newui/button.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newui/button.cpp b/src/newui/button.cpp index ea63ea51..5e900260 100644 --- a/src/newui/button.cpp +++ b/src/newui/button.cpp @@ -56,9 +56,9 @@ Button::Button(ButtonBar *parent, const TQString text, const TQIconSet &icon, TQToolTip::add(this, m_realText); m_assignAccelAction = new TDEAction(i18n("Assign Accelerator..."), 0, - TQT_TQOBJECT(this), TQT_SLOT(assignAccel()), TQT_TQOBJECT(this)); + this, TQT_SLOT(assignAccel()), this); m_clearAccelAction = new TDEAction(i18n("Clear Accelerator"), 0, - TQT_TQOBJECT(this), TQT_SLOT(clearAccel()), TQT_TQOBJECT(this)); + this, TQT_SLOT(clearAccel()), this); TDEConfig *config = kapp->config(); config->setGroup("UI"); |
