Your message dated Sat, 14 Aug 2010 10:47:21 +0000
with message-id <[email protected]>
and subject line Bug#591666: fixed in cutecom 0.22.0-2
has caused the Debian Bug report #591666,
regarding cutecom: Cutecom breaks lines up even though there are no endlines
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
591666: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591666
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: cutecom
Version: 0.22.0-1
Severity: normal
Tags: patch
If a line of text is received in two chunks, cutecom breaks up the line because
of the way qt4 textbrowser works with paragraphs instead of text strings.
Included is a proposed fix, which uses the cursor based interface that is the
preferred way to insert text in qt4 textbrowser.
-- System Information:
Debian Release: squeeze/sid
APT prefers lucid-updates
APT policy: (500, 'lucid-updates'), (500, 'lucid-security'), (500, 'lucid')
Architecture: i386 (i686)
Kernel: Linux 2.6.32-24-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages cutecom depends on:
ii libc6 2.11.1-0ubuntu7.2 Embedded GNU C Library: Shared lib
ii libgcc1 1:4.4.3-4ubuntu5 GCC support library
ii libqt4-qt3support 4:4.6.2-0ubuntu5 Qt 3 compatibility library for Qt
ii libqtcore4 4:4.6.2-0ubuntu5 Qt 4 core module
ii libqtgui4 4:4.6.2-0ubuntu5 Qt 4 GUI module
ii libstdc++6 4.4.3-4ubuntu5 The GNU Standard C++ Library v3
cutecom recommends no packages.
Versions of packages cutecom suggests:
ii lrzsz 0.12.21-5 Tools for zmodem/xmodem/ymodem fil
-- no debconf information
diff -ruN cutecom-0.22.0/qcppdialogimpl.cpp cutecom-0.22.0-nolinebreak/qcppdialogimpl.cpp
--- cutecom-0.22.0/qcppdialogimpl.cpp 2009-06-25 21:10:49.000000000 +0100
+++ cutecom-0.22.0-nolinebreak/qcppdialogimpl.cpp 2010-08-04 15:57:15.951009886 +0100
@@ -18,6 +18,7 @@
#include "qcppdialogimpl.h"
+#include <qscrollbar.h>
#include <qcombobox.h>
#include <qpushbutton.h>
#include <qcheckbox.h>
@@ -1362,13 +1363,23 @@
void QCPPDialogImpl::doOutput()
{
- if (m_outputBuffer.isEmpty())
- {
- return;
- }
+ QScrollBar* vScrollBar;
+ bool scrollWithText;
+
+ if (m_outputBuffer.isEmpty())
+ return;
+
+ vScrollBar = m_outputView->verticalScrollBar();
+ scrollWithText = (vScrollBar->value() == vScrollBar->maximum());
+
+ QTextCursor cursor(m_outputView->document());
+ cursor.movePosition(QTextCursor::End);
+ cursor.insertText(m_outputBuffer);
+
+ if ((scrollWithText))
+ vScrollBar->setValue(vScrollBar->maximum());
- m_outputView->append(m_outputBuffer);
- m_outputBuffer.clear();
+ m_outputBuffer.clear();
}
void QCPPDialogImpl::hexOutputClicked(bool /* on */)
--- End Message ---
--- Begin Message ---
Source: cutecom
Source-Version: 0.22.0-2
We believe that the bug you reported is fixed in the latest version of
cutecom, which is due to be installed in the Debian FTP archive:
cutecom_0.22.0-2.diff.gz
to main/c/cutecom/cutecom_0.22.0-2.diff.gz
cutecom_0.22.0-2.dsc
to main/c/cutecom/cutecom_0.22.0-2.dsc
cutecom_0.22.0-2_i386.deb
to main/c/cutecom/cutecom_0.22.0-2_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Roman I Khimov <[email protected]> (supplier of updated cutecom package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Thu, 12 Aug 2010 22:47:38 +0400
Source: cutecom
Binary: cutecom
Architecture: source i386
Version: 0.22.0-2
Distribution: unstable
Urgency: low
Maintainer: Roman I Khimov <[email protected]>
Changed-By: Roman I Khimov <[email protected]>
Description:
cutecom - Graphical serial terminal, like minicom
Closes: 591666
Changes:
cutecom (0.22.0-2) unstable; urgency=low
.
* Add cutecom-0.22.0-nolinebreak.diff (closes: #591666)
* Install menu item for simple window managers (was always present in
debian dir, but not installed), change deprecated Apps/Tools section
to Applications/System/Hardware (nothing more appropriate IMO)
* Move .desktop file from /usr/share/applnk to more appropriate
/usr/share/applications/kde (should fix Ubuntu bug 379932)
* Add cutecom-remove-deprecated-desktop-entries.patch, fixes lintian
warnings
* Upgrade package to standards 3.9.1
Checksums-Sha1:
9d5e67bad25a7f61b49832bee371d19a89cf16bc 1034 cutecom_0.22.0-2.dsc
ece4e489d03d12d177a96020703765aa2674abd7 3265 cutecom_0.22.0-2.diff.gz
38127f9fac486ac762b3567a9726ca51fcb8d20f 53726 cutecom_0.22.0-2_i386.deb
Checksums-Sha256:
5ae46267d0ed20f5b882ab885ad418a8be7f908a8daebceb13e9eca15851ad3c 1034
cutecom_0.22.0-2.dsc
82f673075f10ba92edc469311666787830f81a82366dfe889844da37c561b4d2 3265
cutecom_0.22.0-2.diff.gz
1621877e19dc1b95e25727a4055042d55351c8713a9ce07507732dfbec1267a0 53726
cutecom_0.22.0-2_i386.deb
Files:
46f1da9f6a18919e955570bf5d6e9387 1034 comm optional cutecom_0.22.0-2.dsc
7ddcdc722e09331b5578ef6b42982222 3265 comm optional cutecom_0.22.0-2.diff.gz
f4e1c2bf6a208c62670c08cfc461cb21 53726 comm optional cutecom_0.22.0-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAkxmcHsACgkQ+C5cwEsrK57mawCg1nKdTUSCmSH6si2Y1StS1Hg+
F7gAoNNFlbm0DeAnHAJC9XRQlKf3dcc4
=Dl7H
-----END PGP SIGNATURE-----
--- End Message ---