diff options
author | Michele Calgaro <[email protected]> | 2023-08-08 12:21:34 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-08 20:01:20 +0900 |
commit | 18c573e806f0dcf0a7fcde805aaa528ef11ebc88 (patch) | |
tree | 625f81c4a08d4d9b4a2b041b261f919afd59828a /tdeprint/cups | |
parent | 9d6823ebc6f4f68e1cd83f42b0548716048cfcfe (diff) | |
download | tdelibs-18c573e806f0dcf0a7fcde805aaa528ef11ebc88.tar.gz tdelibs-18c573e806f0dcf0a7fcde805aaa528ef11ebc88.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c0b74ba868682f39c41a9f70ae11297425b711e1)
Diffstat (limited to 'tdeprint/cups')
-rw-r--r-- | tdeprint/cups/kpschedulepage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeprint/cups/kpschedulepage.cpp b/tdeprint/cups/kpschedulepage.cpp index d7f13c8a4..8614a9c5f 100644 --- a/tdeprint/cups/kpschedulepage.cpp +++ b/tdeprint/cups/kpschedulepage.cpp @@ -220,8 +220,8 @@ void KPSchedulePage::setOptions(const TQMap<TQString,TQString>& opts) else if (t == "third-shift") item = 7; else { - TQTime qt = TQT_TQTIME_OBJECT(TQTime::fromString(t)); - m_tedit->setTime(TQT_TQTIME_OBJECT(qt.addSecs(-3600 * m_gmtdiff))); + TQTime qt = TQTime::fromString(t); + m_tedit->setTime(qt.addSecs(-3600 * m_gmtdiff)); item = 8; } |