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 /parts/documentation | |
parent | f12db681be834f7027132156c05afcbcb2346278 (diff) | |
download | tdevelop-b9186693ada54762210d51282c15e2248e76a586.tar.gz tdevelop-b9186693ada54762210d51282c15e2248e76a586.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 'parts/documentation')
-rw-r--r-- | parts/documentation/find_documentation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/documentation/find_documentation.cpp b/parts/documentation/find_documentation.cpp index 85365f69..ee6c639a 100644 --- a/parts/documentation/find_documentation.cpp +++ b/parts/documentation/find_documentation.cpp @@ -46,10 +46,10 @@ FindDocumentation::FindDocumentation(DocumentationWidget* parent, const char* na man_item(0), info_item(0), index_item(0), google_item(0), contents_item(0), last_item(0), m_widget(parent) { - TQWidget* tmp = TQT_TQWIDGET(TQApplication::desktop()); + TQWidget* tmp = TQApplication::desktop(); setGeometry(tmp->width()/2 - width()/2, tmp->height()/2 - height()/2, width(), height()); - proc_man = new TDEProcess( TQT_TQOBJECT(this) ); - proc_info = new TDEProcess( TQT_TQOBJECT(this) ); + proc_man = new TDEProcess( this ); + proc_info = new TDEProcess( this ); connect( proc_man, TQT_SIGNAL(processExited( TDEProcess* )), this, TQT_SLOT(procManExited( TDEProcess* )) ); |