diff options
author | Timothy Pearson <[email protected]> | 2012-02-20 18:14:05 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-20 18:14:05 -0600 |
commit | 19c822c41d0644be3f2bed9ddb86b5f996c0d023 (patch) | |
tree | d6e9e16f525755940ea0af5b3fc90e980f1be5ec /kooka/ksaneocr.cpp | |
parent | 2e433f9dc4a5b8b979662f80cae2903a4496f7a3 (diff) | |
download | tdegraphics-19c822c41d0644be3f2bed9ddb86b5f996c0d023.tar.gz tdegraphics-19c822c41d0644be3f2bed9ddb86b5f996c0d023.zip |
Fix Q_CHECK_PTR
Diffstat (limited to 'kooka/ksaneocr.cpp')
-rw-r--r-- | kooka/ksaneocr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kooka/ksaneocr.cpp b/kooka/ksaneocr.cpp index 70878549..f22d83fd 100644 --- a/kooka/ksaneocr.cpp +++ b/kooka/ksaneocr.cpp @@ -394,7 +394,7 @@ void KSANEOCR::startOCRAD( ) } daemon = new KProcess; - Q_CHECK_PTR(daemon); + TQ_CHECK_PTR(daemon); *daemon << cmd; *daemon << TQString("-x"); @@ -532,7 +532,7 @@ void KSANEOCR::startOCRProcess( void ) } daemon = new KProcess; - Q_CHECK_PTR(daemon); + TQ_CHECK_PTR(daemon); m_ocrResultText = ""; connect(daemon, TQT_SIGNAL(processExited(KProcess *)), |