Bug#502559: Include from libqt3-headers Fails With -Werror.

2008-10-17 Thread Pat Suwalski
Package: libqt3-headers
Version: 3:3.3.8b-5

Software that tries to build against Qt3's qimage.h with the -Werror
compiler flag will fail in Lenny. Apparently g++ has gotten more picky
about order of operations:

/usr/include/qt3/qimage.h: In member function 'bool
QImageTextKeyLang::operator<(const QImageTextKeyLang&) const':
/usr/include/qt3/qimage.h:61: error: suggest parentheses around &&
within ||

This can be worked around by using the -Wno-parentheses CPPFLAG, but it
would be far better if it were actually fixed in the header.

As such, I've written and tested the attached patch.

--Pat
Author: Pat Suwalski <[EMAIL PROTECTED]>

This patch fixes the QImage header breaking with -Werror on Lenny:

/usr/include/qt3/qimage.h: In member function
  'bool QImageTextKeyLang::operator<(const QImageTextKeyLang&) const':
/usr/include/qt3/qimage.h:61: error: suggest parentheses around && within ||

--- a/src/kernel/qimage.h	2008-10-17 19:28:30.0 +
+++ b/src/kernel/qimage.h	2008-10-17 19:29:00.0 +
@@ -58,7 +58,7 @@
 QCString lang;
 
 bool operator< (const QImageTextKeyLang& other) const
-	{ return key < other.key || key==other.key && lang < other.lang; }
+	{ return key < other.key || (key==other.key && lang < other.lang); }
 bool operator== (const QImageTextKeyLang& other) const
 	{ return key==other.key && lang==other.lang; }
 };


Processed: bug 502459 is forwarded to https://bugs.kde.org/show_bug.cgi?id=172557

2008-10-17 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> forwarded 502459 https://bugs.kde.org/show_bug.cgi?id=172557
Bug#502459: konqueror: Crash on eBay page
Noted your statement that Bug has been forwarded to 
https://bugs.kde.org/show_bug.cgi?id=172557.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#502459: Patch avoid crash.

2008-10-17 Thread Raúl Sánchez Siles
  Hello All:

  Thanks a lot for the patch Moritz. I have tested it on a debian prerelease 
of next kdelibs (for sid) and it works. I think it result would be the same 
for 3.5.9 currently on Lenny.

  I have found this bug reported upstream and I'm about to expose the patch 
there. I hope we'll have feedback soon.

  Regards,
-- 
 Raúl Sánchez Siles
->Proud Debian user<-
Linux registered user #416098


signature.asc
Description: This is a digitally signed message part.


Bug#502459: more information on konqueror ebay crash

2008-10-17 Thread Moritz Muehlenhoff
On Fri, Oct 17, 2008 at 04:10:08PM +0100, Dave Williams wrote:
> Konqueror crashes when ever i try to visit my 'My Ebay' page on the UK 
> version 
> of EBay (http://www.ebay.co.uk). It loads the login page fine, but once i've 
> clicked the 'sign in' button, the status bar does a bit of stuff that looks 
> like it's trying to load the page, then konqueror dies, emitting signal 8 
> (SIGFPE).
> 
> I'm running debian testing with everything up-to-date from the repositories 
> at 
> the time of writing (17th october 2008).

Could you try the untested kdelibs patch below?

--- kdelibs-3.5.9.dfsg.1/khtml/rendering/table_layout.cpp.orig  2008-10-17 
20:01:52.0 +0200
+++ kdelibs-3.5.9.dfsg.1/khtml/rendering/table_layout.cpp   2008-10-17 
20:02:10.0 +0200
@@ -296,7 +296,7 @@
 qDebug("FixedTableLayout::layout: assigning percent width, base=%d, 
totalPercent=%d", base, totalPercent);
 #endif
 for ( int i = 0; available > 0 && i < nEffCols; i++ ) {
-if ( width[i].isPercent() ) {
+if ( width[i].isPercent() && totalPercent ) {
 int w = base * width[i].value() / totalPercent;
 available -= w;
 calcWidth[i] = w;

Cheers,
Moritz



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 493128

2008-10-17 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 493128 fixed-upstream
Bug#493128: fails to open some PDF files, which can be opened in previous 
version, like 4.0.83
There were no tags set.
Tags added: fixed-upstream

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#493128: fixed

2008-10-17 Thread David Faure
Bug fixed in kdelibs trunk (will be in KDE 4.2)

-- 
David Faure, [EMAIL PROTECTED], sponsored by Trolltech to work on KDE,
Konqueror (http://www.konqueror.org), and KOffice (http://www.koffice.org).



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#502459: more information on konqueror ebay crash

2008-10-17 Thread Dave Williams
Konqueror crashes when ever i try to visit my 'My Ebay' page on the UK version 
of EBay (http://www.ebay.co.uk). It loads the login page fine, but once i've 
clicked the 'sign in' button, the status bar does a bit of stuff that looks 
like it's trying to load the page, then konqueror dies, emitting signal 8 
(SIGFPE).

I'm running debian testing with everything up-to-date from the repositories at 
the time of writing (17th october 2008).

After installing the debugging symbols, the backtrace output from the kde 
crash dialogue is as follows:

[Thread debugging using libthread_db enabled]
[New Thread 0xb68406c0 (LWP 852)]
[KCrash handler]
#6  0xb5dee81c in khtml::FixedTableLayout::layout (this=0xaca5330)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/table_layout.cpp:300
#7  0xb5df73a1 in khtml::RenderTable::layout (this=0xaca43d0)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_table.cpp:299
#8  0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xaca434c, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#9  0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xaca434c, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#10 0xb5e26285 in khtml::RenderBlock::layout (this=0xaca434c)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#11 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xaca42c8, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#12 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xaca42c8, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#13 0xb5e26285 in khtml::RenderBlock::layout (this=0xaca42c8)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#14 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xaca4244, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#15 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xaca4244, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#16 0xb5e26285 in khtml::RenderBlock::layout (this=0xaca4244)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#17 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xaca055c, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#18 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xaca055c, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#19 0xb5e26285 in khtml::RenderBlock::layout (this=0xaca055c)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#20 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xaca04c4, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#21 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xaca04c4, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#22 0xb5e243c3 in khtml::RenderTableCell::layout (this=0xaca04c4)

at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_table.cpp:2303
#23 0xb5def996 in khtml::RenderTableRow::layout (this=0xaca049c)

at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_table.cpp:2106
#24 0xb5ddbb2b in khtml::RenderContainer::layout (this=0xac9fc4c)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#25 0xb5df7415 in khtml::RenderTable::layout (this=0xac9fb98)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_table.cpp:314
#26 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xac9f9a8, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#27 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xac9f9a8, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#28 0xb5e26285 in khtml::RenderBlock::layout (this=0xac9f9a8)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#29 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xac9f924, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_object.h:440
#30 0xb5e23be8 in khtml::RenderBlock::layoutBlock (this=0xac9f924, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:710
#31 0xb5e26285 in khtml::RenderBlock::layout (this=0xac9f924)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/rendering/render_block.cpp:611
#32 0xb5e108b6 in khtml::RenderBlock::layoutBlockChildren (this=0xac96b60, 
relayoutChildren=true)
at /tmp/buildd/kdelibs-3.5.9.dfsg.1/./khtml/render

Bug#498088: workaround

2008-10-17 Thread cbothmer
Try the following:

1. start kmix from console
2. open "settings" (second item in main menu) -> "configure kmix" (last item in 
settings menu).
3. close the dialog with any action

caspar
_
Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
http://smartsurfer.web.de/?mc=100071&distributionid=0066




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]