diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 19:39:01 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-28 16:10:53 +0900 |
commit | 07a12d6eb21cce4cd735de6b4a4a17cce152f6a8 (patch) | |
tree | 68012ffbb56cb0f0023b257591f3e2218827fda9 /parts/outputviews/appoutputviewpart.cpp | |
parent | f9e07649d38f3ec8c2c599c0ba65a288e8eac5e0 (diff) | |
download | tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.tar.gz tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'parts/outputviews/appoutputviewpart.cpp')
-rw-r--r-- | parts/outputviews/appoutputviewpart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parts/outputviews/appoutputviewpart.cpp b/parts/outputviews/appoutputviewpart.cpp index 5a961419..b2771a8a 100644 --- a/parts/outputviews/appoutputviewpart.cpp +++ b/parts/outputviews/appoutputviewpart.cpp @@ -97,7 +97,7 @@ void AppOutputViewPart::startAppCommand(const TQString &directory, const TQStrin TQString cmd; if (inTerminal) { - cmd = Settings::terminalEmulatorName( *kapp->config() ); + cmd = Settings::terminalEmulatorName( *tdeApp->config() ); if ( cmd == "konsole" && !directory.isNull() ) { // isn't setting the working directory below enough? // If a directory was specified, use it cmd += TQString(" --workdir '%1'").arg(directory); |