Bug#38950: marked as done (kdevelop outputview I18N patch) by Harald Fernengel <harry at kdevelop.org>

Stephan Kulow owner at bugs.kde.org
Tue Mar 5 01:19:02 UTC 2002


Your message with subj: Patch applied

Hi,

I just applied your patch, thank you for sending it in.

Best regards,
Harry

has caused the attached bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Stephan Kulow
(administrator, KDE bugs database)

Received: (at submit) by bugs.kde.org; 4 Mar 2002 13:06:00 +0000
Received: (qmail 7286 invoked by uid 33); 4 Mar 2002 13:05:59 -0000
Date: 4 Mar 2002 13:05:59 -0000
Message-ID: <20020304130559.7285.qmail at mail.kde.org>
To: submit at bugs.kde.org
Subject: kdevelop outputview I18N patch
From: asataku at osk3.3web.ne.jp
X-KDE-Received: -61.213.79.95

Package:           gideon
Version:           0.2 (using KDE 2.9.0 3 (CVS >= 20020302))
Severity:          normal
Installed from:    compiled sources
Compiler:          gcc version 2.95.3 20010315 (release)
OS:                Linux (i686) release 2.2.18-0vl4.2.1
OS/Compiler notes: 

kdevelop outputview can't recognize localized make output.
Please apply this patch.

diff -ur kdevelop.orig/parts/outputviews/makewidget.cpp kdevelop/parts/outputviews/makewidget.cpp
--- kdevelop.orig/parts/outputviews/makewidget.cpp      Wed Jun 13 05:46:28 2001
+++ kdevelop/parts/outputviews/makewidget.cpp   Sun Aug 19 15:43:35 2001
@@ -207,7 +207,7 @@
         stderrbuf = "";
     }
     
-    stdoutbuf += QString::fromLatin1(buffer, buflen);
+    stdoutbuf += QString::fromLocal8Bit(buffer, buflen);
     int pos;
     while ( (pos = stdoutbuf.find('\n')) != -1) {
         QString line = stdoutbuf.left(pos);
@@ -225,7 +225,7 @@
         stdoutbuf = "";
     }
     
-    stderrbuf += QString::fromLatin1(buffer, buflen);
+    stderrbuf += QString::fromLocal8Bit(buffer, buflen);
     int pos;
     while ( (pos = stderrbuf.find('\n')) != -1) {
         QString line = stderrbuf.left(pos);


(Submitted via bugs.kde.org)
(Called from KBugReport dialog)





More information about the KDevelop-devel mailing list