diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-13 21:45:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-14 09:58:29 +0900 |
commit | 60598ea23e9fec7b4320985aad848c5ffee033c2 (patch) | |
tree | 169801c444ffe73c517d5b1cdc62a39efb8c7392 /src | |
parent | b8cc513c5e875739c6790da651f6a3f47ed8f657 (diff) | |
download | tdevelop-60598ea23e9fec7b4320985aad848c5ffee033c2.tar.gz tdevelop-60598ea23e9fec7b4320985aad848c5ffee033c2.zip |
Removed Qt4 specific code and template files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/partcontroller.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/partcontroller.cpp b/src/partcontroller.cpp index 33e50afd..4d375b0e 100644 --- a/src/partcontroller.cpp +++ b/src/partcontroller.cpp @@ -395,14 +395,7 @@ void PartController::editDocumentInternal( const KURL & inputUrl, int lineNum, if ( dom != 0 ) { // The global option specifies a fallback if the project - // has no setting or no project is open. However for TQt4 - // projects we want to use ExternalDesigner in any case. - if ( DomUtil::readIntEntry( *dom, "/kdevcppsupport/qt/version", 3 ) == 4 ) - { - designerPluginPaths = DomUtil::readListEntry(*dom, "/kdevcppsupport/qt/designerpluginpaths", "path" ); - DesignerSetting = "ExternalDesigner"; - } - + // has no setting or no project is open. DesignerSetting = DomUtil::readEntry(*dom, "/kdevcppsupport/qt/designerintegration", DesignerSetting ); designerExec = DomUtil::readEntry(*dom, "/kdevcppsupport/qt/designer", designerExec ); } |