summaryrefslogtreecommitdiffstats
path: root/languages/ruby/rubysupport_part.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 19:39:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-28 16:10:53 +0900
commit07a12d6eb21cce4cd735de6b4a4a17cce152f6a8 (patch)
tree68012ffbb56cb0f0023b257591f3e2218827fda9 /languages/ruby/rubysupport_part.cpp
parentf9e07649d38f3ec8c2c599c0ba65a288e8eac5e0 (diff)
downloadtdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.tar.gz
tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/ruby/rubysupport_part.cpp')
-rw-r--r--languages/ruby/rubysupport_part.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/ruby/rubysupport_part.cpp b/languages/ruby/rubysupport_part.cpp
index 141d4081..f77f3d05 100644
--- a/languages/ruby/rubysupport_part.cpp
+++ b/languages/ruby/rubysupport_part.cpp
@@ -157,7 +157,7 @@ void RubySupportPart::initialParse()
kdDebug() << "initialParse()" << endl;
if (project()) {
- kapp->setOverrideCursor(waitCursor);
+ tdeApp->setOverrideCursor(waitCursor);
TQStringList files = project()->allFiles();
for (TQStringList::Iterator it = files.begin(); it != files.end() ;++it) {
kdDebug() << "maybe parse " << project()->projectDirectory() + "/" + (*it) << endl;
@@ -165,7 +165,7 @@ void RubySupportPart::initialParse()
}
emit updatedSourceInfo();
- kapp->restoreOverrideCursor();
+ tdeApp->restoreOverrideCursor();
} else {
kdDebug() << "No project" << endl;
}
@@ -686,7 +686,7 @@ void RubySupportPart::slotCreateSubclass()
void RubySupportPart::slotBrowse()
{
- kapp->invokeBrowser("http://localhost:3000/");
+ tdeApp->invokeBrowser("http://localhost:3000/");
}
void RubySupportPart::slotSwitchToController()