diff options
author | François Andriot <albator78@libertysurf.fr> | 2015-06-29 20:18:37 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2015-06-29 20:18:37 +0200 |
commit | 8492b0db14655fef6129fa506636e99a51d111e1 (patch) | |
tree | 8281b4ccc8690fea87ad8cd9470989836dd6a23f /opensuse/core/qt3/patches | |
parent | 28cecf3df866375fa22532f3232c5ce4d5d7ee2d (diff) | |
download | tde-packaging-8492b0db14655fef6129fa506636e99a51d111e1.tar.gz tde-packaging-8492b0db14655fef6129fa506636e99a51d111e1.zip |
RPM Packaging: update qt3 for opensuse
Diffstat (limited to 'opensuse/core/qt3/patches')
-rw-r--r-- | opensuse/core/qt3/patches/3.5.13.2/qt3-3.5.13.2-fix_not_a_string_literal.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/opensuse/core/qt3/patches/3.5.13.2/qt3-3.5.13.2-fix_not_a_string_literal.patch b/opensuse/core/qt3/patches/3.5.13.2/qt3-3.5.13.2-fix_not_a_string_literal.patch new file mode 100644 index 000000000..0a691fc9f --- /dev/null +++ b/opensuse/core/qt3/patches/3.5.13.2/qt3-3.5.13.2-fix_not_a_string_literal.patch @@ -0,0 +1,11 @@ +--- qmake/project.cpp.orig 2015-04-10 17:15:10.731091347 +0200 ++++ qmake/project.cpp 2013-12-30 17:58:15.471703644 +0100 +@@ -685,7 +685,7 @@ + // fprintf(stderr,"Current QT version number: " + ver + "\n"); + if (ver != "" && ver != test_version) { + ver = test_version; +- fprintf(stderr,"Changed QT version number to " + test_version + "!\n"); ++ fprintf(stderr,"Changed QT version number to %s!\n", test_version.ascii()); + } + } + } |