From ad29fba37811bd03a85221ffde32dc5637867f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Thu, 26 Feb 2009 10:44:45 +0100 Subject: Added some addition output to qpatch Done with Roberto --- src/tools/qpatch/qpatch.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/tools/qpatch/qpatch.cpp b/src/tools/qpatch/qpatch.cpp index 972b1cda9d..1c1c0b8b17 100644 --- a/src/tools/qpatch/qpatch.cpp +++ b/src/tools/qpatch/qpatch.cpp @@ -77,6 +77,7 @@ int main(int argc, char *argv[]) std::cerr << "qpatch: error: file `" << qPrintable(fileName) << "' not writable" << std::endl; continue; } + std::cout << "patching file `" << qPrintable(fileName) << "'" << std::endl; forever { int start = source.indexOf(qtDirPath, index); @@ -121,6 +122,10 @@ int main(int argc, char *argv[]) index = endOfString; } + if (index == 0) { + std::cerr << "qpatch: warning: file `" << qPrintable(fileName) << "' didn't contain string to patch" << std::endl; + } + if (index != source.size()) file.write(source.constData() + index, source.size() - index); } @@ -147,6 +152,8 @@ int main(int argc, char *argv[]) continue; } + std::cout << "patching text file `" << qPrintable(fileName) << "'" << std::endl; + source.replace(qtDirPath, newQtPath); file.write(source); } -- cgit v1.2.3