summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:34:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-04 14:29:55 +0900
commit7221e1ed9cb20950cfb09167c6e194ff5c619c16 (patch)
tree9ab86879d2d578d3445861571e43a24ba72027d7
parent340a9422209c05822421021adb46530c3b8ff53d (diff)
downloadtdesvn-7221e1ed9cb20950cfb09167c6e194ff5c619c16.tar.gz
tdesvn-7221e1ed9cb20950cfb09167c6e194ff5c619c16.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 29df04779b145404bf4959d071d3e9eddd3c263d)
-rw-r--r--src/svnfrontend/commandexec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/commandexec.cpp b/src/svnfrontend/commandexec.cpp
index ce7d45d..ff54adb 100644
--- a/src/svnfrontend/commandexec.cpp
+++ b/src/svnfrontend/commandexec.cpp
@@ -79,8 +79,8 @@ pCPart::pCPart()
end = svn::Revision::UNDEFINED;
toStdout.open(IO_WriteOnly, stdout);
toStderr.open(IO_WriteOnly, stderr);
- Stdout.setDevice(TQT_TQIODEVICE(&toStdout));
- Stderr.setDevice(TQT_TQIODEVICE(&toStderr));
+ Stdout.setDevice(&toStdout);
+ Stderr.setDevice(&toStderr);
disp = new DummyDisplay();
m_SvnWrapper = new SvnActions(disp,0,true);
}