diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:44:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-16 19:20:35 +0900 |
commit | 074a3e6db609cc04e0a5830b0c1884447d0e5bbb (patch) | |
tree | 536f2f3b637ac5f0f91e76a9e2090480b4dda19f /src/translators/xsltexporter.cpp | |
parent | e164b1d02780da8e0d91f5c6617b511f1b24fc6d (diff) | |
download | tellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.tar.gz tellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/translators/xsltexporter.cpp')
-rw-r--r-- | src/translators/xsltexporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/xsltexporter.cpp b/src/translators/xsltexporter.cpp index 07e9bc9..96fa7f1 100644 --- a/src/translators/xsltexporter.cpp +++ b/src/translators/xsltexporter.cpp @@ -64,7 +64,7 @@ bool XSLTExporter::exec() { } TQWidget* XSLTExporter::widget(TQWidget* parent_, const char* name_/*=0*/) { - if(m_widget && TQT_BASE_OBJECT(m_widget->parent()) == TQT_BASE_OBJECT(parent_)) { + if(m_widget && m_widget->parent() == parent_) { return m_widget; } |