What Are Pheromones? -- Let's Find Out

2009-05-19 Thread Waas Romelus
inline: Waas.png

Processed: severity of 520426 is serious

2009-05-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 520426 serious
Bug#520426: kdm misses the /usr/lib/kde4/kgreet_* files
Severity set to `serious' from `important'


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 debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#520426: kein Betreff

2009-05-19 Thread nutzteil
Hello,

 The package should either contain the /usr/lib/kde4/kgreet_*.so files or
 depend on kdebase-workspace-bin where the files are located now.

Would like to see that files in an own package, because i only wan to use kdm.
Installing of kdebase-workspace-bin brought a lot of not-fun-stuff i just do 
not need.

Thanks
christian

__
Verschicken Sie SMS direkt vom Postfach aus - in alle deutschen und viele 
ausländische Netze zum gleichen Preis! 
https://produkte.web.de/webde_sms/sms






--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#520426: wishlist: please no dependency on kdebase-workspace-*

2009-05-19 Thread nutzteil

Hello,

 The package should either contain the /usr/lib/kde4/kgreet_*.so files or
 depend on kdebase-workspace-bin where the files are located now.

Would like to see that files in an separate package, because i only wan to use 
kdm.
Installing of kdebase-workspace-bin brought a lot of not-fun-stuff i just do 
not need.

Thanks
christian
__
Verschicken Sie SMS direkt vom Postfach aus - in alle deutschen und viele 
ausländische Netze zum gleichen Preis! 
https://produkte.web.de/webde_sms/sms






--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#529431: akregator: Sometimes unread is more then total

2009-05-19 Thread Julien Goodwin
Package: akregator
Version: 4:4.2.2-1
Severity: minor

*** Please type your report below this line ***

Some feeds, eg, at the moment, Planet PHP (http://www.planet-php.net/ or
http://www.planet-php.net/rdf/) cause incorrect totals to be generated
where unread is more then total.

Currently in list view I see five items, four unread. The side pane is
saying four unread out of total three. As soon as I delete an item
correct totals are generated.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.29-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages akregator depends on:
ii  kdebase-runtime   4:4.2.2-1  runtime components from the
offici
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE
4 appli
ii  kdepimlibs5   4:4.2.2-1  core libraries for KDE PIM
4 appli
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-4  GCC support library
ii  libkdepim44:4.2.2-1  KDE PIM library
ii  libkontactinterfaces4 4:4.2.2-1  KDE Kontact interface library
ii  libqt4-dbus   4.5.1-2Qt 4 D-Bus module
ii  libqt4-xml4.5.1-2Qt 4 XML module
ii  libqtcore44.5.1-2Qt 4 core module
ii  libqtgui4 4.5.1-2Qt 4 GUI module
ii  libstdc++64.4.0-4The GNU Standard C++ Library v3

akregator recommends no packages.

akregator suggests no packages.

-- no debconf information



signature.asc
Description: OpenPGP digital signature


Bug#529435: QListBox::current set in insertItem without currentChanged emiting

2009-05-19 Thread Michal Hocko
Package: qt-x11-free
Severity: normal

Hi,
I have just noticed that buggy behavior in my application is caused by
QListBox::current being set during insertItem without triggering currentChanged.
My application uses currentChanged handler for enable/disable logic and
so this doesn't work in case that box was empty.

I am not sure whether this is correct or not, but it is at least
inconsistent for cases like:

box-insertItem(item, pos);
box-setCurrentItem(pos);

because this will trigger currentChanged signal only if box wasn't empty
before.

I have checked the source and really QListBox::insertItem does something
like:

if ( hasFocus()  !d-current ) {
d-current = d-head;
updateItem( d-current );
emit highlighted( d-current );
emit highlighted( d-current-text() );
emit highlighted( index );
}

I think that we are missing emit currentChanged there.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-rc6-22ef37eed673587ac984965dc88ba94c68873291 (SMP w/2 CPU 
cores; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#529435: QListBox::current set in insertItem without currentChanged emiting

2009-05-19 Thread Michal Hocko
On Tue, May 19, 2009 at 01:17:24PM +0200, Michal Hocko wrote:
 Package: qt-x11-free
 Severity: normal
 
 Hi,
 I have just noticed that buggy behavior in my application is caused by
 QListBox::current being set during insertItem without triggering 
 currentChanged.
 My application uses currentChanged handler for enable/disable logic and
 so this doesn't work in case that box was empty.
 
 I am not sure whether this is correct or not, but it is at least
 inconsistent for cases like:
 
 box-insertItem(item, pos);
 box-setCurrentItem(pos);
 
 because this will trigger currentChanged signal only if box wasn't empty
 before.
 
 I have checked the source and really QListBox::insertItem does something
 like:
 
 if ( hasFocus()  !d-current ) {
   d-current = d-head;
   updateItem( d-current );
   emit highlighted( d-current );
   emit highlighted( d-current-text() );
   emit highlighted( index );
 }
 
 I think that we are missing emit currentChanged there.

I forgot to say that setCurrentItem after insertItem doesn't trigger
currentChanged because the setCurrentItem returns immediately if the
current is same as the given one which is exactly the case here.

-- 
Michal Hocko



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#529435: QListBox::current set in insertItem without currentChanged emiting

2009-05-19 Thread Michal Hocko
On Tue, May 19, 2009 at 01:17:24PM +0200, Michal Hocko wrote:
 Package: qt-x11-free
 Severity: normal
 
 Hi,
 I have just noticed that buggy behavior in my application is caused by
 QListBox::current being set during insertItem without triggering 
 currentChanged.
 My application uses currentChanged handler for enable/disable logic and
 so this doesn't work in case that box was empty.
 
 I am not sure whether this is correct or not, but it is at least
 inconsistent for cases like:
 
 box-insertItem(item, pos);
 box-setCurrentItem(pos);
 
 because this will trigger currentChanged signal only if box wasn't empty
 before.
 
 I have checked the source and really QListBox::insertItem does something
 like:
 
 if ( hasFocus()  !d-current ) {
   d-current = d-head;
   updateItem( d-current );
   emit highlighted( d-current );
   emit highlighted( d-current-text() );
   emit highlighted( index );
 }
 
 I think that we are missing emit currentChanged there.
 
I would suggest the attached patch. Please note that I haven't tested
it. 
There are more places which set current to some value and don't emit
currentChanged but I wasn't sure whether to fix them as well (e.g.
QListBox::mousePressEventEx, QListBox::mouseReleaseEvent).
-- 
Michal Hocko
Index: qt-x11-free-3.3.8b/src/widgets/qlistbox.cpp
===
--- qt-x11-free-3.3.8b.orig/src/widgets/qlistbox.cpp	2009-05-19 14:01:28.0 +0200
+++ qt-x11-free-3.3.8b/src/widgets/qlistbox.cpp	2009-05-19 14:04:47.0 +0200
@@ -1482,6 +1482,7 @@ void QListBox::insertItem( const QListBo
 if ( hasFocus()  !d-current ) {
 	d-current = d-head;
 	updateItem( d-current );
+	emit currentChanged( d-current );
 	emit highlighted( d-current );
 	emit highlighted( d-current-text() );
 	emit highlighted( index );
@@ -1538,6 +1539,7 @@ void QListBox::insertItem( const QListBo
 if ( hasFocus()  !d-current ) {
 	d-current = d-head;
 	updateItem( d-current );
+	emit currentChanged( d-current );
 	emit highlighted( d-current );
 	emit highlighted( d-current-text() );
 	emit highlighted( index( d-current ) );


Quanta's VPL editor don't handle accents

2009-05-19 Thread Alexis PM
Package: quanta
Version: 4:3.5.9-3
Severity: normal

-- System Information:

Debian Release: 5.0.1

*** Please type your report below this line ***
In the VPL editor, the accents are not handle right.
Examples: I write á é í ó ú, but in the VPL editor appear ´a ´e ´i ´o ´u. 
The HTML codification (charset= utf8, ISO-8859,...) not affect this.

Thanks






  

Correctly Put on a Condom Every Time You Hook Upp

2009-05-19 Thread Paustian Yonts
inline: jiff.png

Lenny with KDE 3.5.10 on 256MB memory

2009-05-19 Thread Lisi Reisz
This is, I know, below the recommended amount of RAM (512MB), but comfortably 
above the minimum.

Has anyone any experience of how well or badly this actually runs?

TIA
Lisi


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: GTK apps in KDE4

2009-05-19 Thread Enzo Cappa
 I just tried it in KDE4 and it works, I have the same caracters in KDE4 and
 GTK apps. That's what I searched since a long time
I downloaded qtcurve  sources and compiled it, both for QT and GTK, and it 
works. But the setting are not the same for GNOME and KDE applications, and I 
read somewhere that the file dialog of GTK application should be replaced with 
KDE one, but its not my case. 
Any tips to solve it?
Thanks!


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: KDE 4 simply broken

2009-05-19 Thread Carsten Pfeiffer
Am Donnerstag, 14. Mai 2009 schrieb jedd:

  The little 'x' icon to clear the location bar, previously sensibly
  located on the left, right near the thing you would want to clear,
  is now located way over on the right and in my case appears to
  be a mini-icon for an openoffice impress document type. 

I just noticed that you can configure this: open the toolbar configuration 
dialog to edit the address toolbar. Drag the Clear Address bar action from 
the left side to the very top of the right side.

Cheers,
Carsten


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


Re: KDE 4 simply broken

2009-05-19 Thread jedd
On Tuesday 19 May 2009, Carsten Pfeiffer wrote:
 I just noticed that you can configure this: open the toolbar
 configuration dialog to edit the address toolbar. Drag the Clear
 Address bar action from the left side to the very top of the right
 side.

 Carsten - thank you so very much for finding this and letting
 me know!

 I just did it, and it works.  Okay, sure, of my three toolbar icon
 sets, two of them relocated to the top, one started showing with
 text again, the other got larger, and the third disappeared, and
 konqueror crashed to drkonqi when I was in settings doing a 'change
 icon' on that clear location bar icon .. but perversely I now think
 of this as normal.

 After a few new konquerors to clear the cache of pre-loaded
 instances, it looks to be working fine.

 Jedd.



-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: KDE 4 simply broken

2009-05-19 Thread Carsten Pfeiffer
Am Dienstag, 19. Mai 2009 schrieb jedd:

  I just did it, and it works.  Okay, sure, of my three toolbar icon
  sets, two of them relocated to the top, one started showing with
  text again, the other got larger, and the third disappeared, and
  konqueror crashed to drkonqi when I was in settings doing a 'change
  icon' on that clear location bar icon .. but perversely I now think
  of this as normal.

Sarcasm is probably the best way to deal with this for now ;-}

Just to keep you happy I found out another thing: start up dolphin, open the 
settings dialog, general tab and check direct renaming (or something like 
that, I have the German version).

Et voilà, you won't get the rename dialog anymore (not even in Konqueror).

No gain without another oddity though: the settings you do in dolphin don't 
seem to apply immediately, at least I have to open another dolphin to get the 
changes.

Cheers,
Carsten


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


Re: Akregator is not auto-fetching

2009-05-19 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

B A wrote:
 Got a little problem with akregator in kde 4.2.2. Its not autofetching.

I also noticed it stopped autofetching not too long ago. Have you searched 
the KDE bugzilla?

Cheers,

Marcus

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoTCzkACgkQXjXn6TzcAQmVxACePIX44bTc7RH3ivH6EKgTFWu+
sAsAoMCOIs0dc1vQ0tQphT/kY0Gh/7M9
=EUA6
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Lenny with KDE 3.5.10 on 256MB memory

2009-05-19 Thread Lisandro Damián Nicanor Pérez Meyer
On Mar 19 May 2009 05:53:48 Lisi Reisz escribió:
 This is, I know, below the recommended amount of RAM (512MB), but
 comfortably above the minimum.

No, I had a 512 MB system for years and worked flawlessly. indeed, when I 
switched to 1 GB, I couldn't notice it during normal use (not compiling, not 
using Java, etc).

Regards, Lisandro.

-- 
Trabaja como si no necesitaras el dinero.
Ama como si nunca hubieses sido herido.
Baila como si nadie estuviera mirando.
Canta como si nadie escuchara.
Vive como si fuera el Cielo en la Tierra.
  Anónimo

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/



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


Re: KDE 4 simply broken

2009-05-19 Thread jedd
On Tuesday 19 May 2009, Carsten Pfeiffer wrote:
 Just to keep you happy I found out another thing: start up dolphin,
 open the settings dialog, general tab and check direct renaming (or
 something like that, I have the German version).

 Happy?!  My nipples are tingling with delight over here!  If you
 could keep working through my List of Gripes, that'd be great.  ;)

 For the record - with the english version - you have to:
 Dolphin | Settings | Configure Dolphin | General | Rename inline

 I am both ecstatic and bewildered that setting something in Dolphin
 would change the way that Konqueror works.

 Jedd.



-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org