Bug#742396: [qt5-doc] Readable stylesheet

2014-03-23 Thread Michal Humpula
Package: qt5-doc
Version: 5.2.0-2
Severity: normal

--- Please enter the report below this line. ---

Please provide a readable stylesheet to documentation pages. Right now it's 
quite hard to read the documentation (sections blends together) and I rather 
go browsing the online doc.

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.13.6-amonsul

Debian Release: jessie/sid
  500 unstableftp.cz.debian.org 
  500 unstabledl.cihar.com 
  500 stable  deb.opera.com 
1 experimentalftp.cz.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-===
qtbase5-doc| 5.2.1-1
qtdeclarative5-doc | 5.2.0-8
qtgraphicaleffects5-doc| 5.2.0-2
qtmultimedia5-doc  | 5.2.0-3
qtscript5-doc  | 5.2.0+dfsg-3
qtserialport5-doc  | 5.2.0-4
qtsvg5-doc | 5.2.0-3
qttools5-doc   | 5.2.0-9
qtwebkit5-doc  | 5.2.0+dfsg1-1
qtwebkit5-examples-doc | 5.2.0+dfsg-2
qtx11extras5-doc   | 5.2.0-2
qtxmlpatterns5-doc | 5.2.0-3


Package's Recommends field is empty.

Suggests(Version) | Installed
=-+-===
qtbase5-dev   | 5.2.0+dfsg-7
qttools5-dev-tools| 5.2.0-9


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5348584.5DBMreCdN8@amonsul



Bug#681236: [kmix] Fix select master channel for multiple cards

2012-07-11 Thread Michal Humpula
Package: kmix
Version: 4:4.8.4-2
Severity: normal
Tags: patch

--- Please enter the report below this line. ---

On some settups where there are multiple soundcards with simillar name, the 
master select dialog gets confused to which card to assign the master channel. 
The patch is using Mixer-id() instead of readableName().

Already sended to kde for review, see https://git.reviewboard.kde.org/r/105496/.

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.4.4-amonsul+

Debian Release: wheezy/sid
  500 unstableftp.cz.debian.org 
  500 unstabledebian.cihar.com 
  500 unstabledeb.opera.com 
1 experimentalftp.cz.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-=
kde-runtime  | 4:4.8.4-1
libasound2   (= 1.0.16) | 1.0.25-3
libc6   (= 2.4) | 2.13-34
libkdecore5   (= 4:4.8) | 4:4.8.4-3
libkdeui5 (= 4:4.8) | 4:4.8.4-3
libphonon4  (= 4:4.6.0really4.3.80) | 4:4.6.0.0-2
libplasma3(= 4:4.8) | 4:4.8.4-3
libpulse-mainloop-glib0  (= 0.99.1) | 2.0-3
libpulse0(= 0.99.1) | 2.0-3
libqt4-dbus (= 4:4.6.1) | 4:4.8.2-1
libqt4-xml  (= 4:4.5.3) | 4:4.8.2-1
libqtcore4  (= 4:4.8.0) | 4:4.8.2-1
libqtgui4   (= 4:4.6.1) | 4:4.8.2-1
libsolid4 (= 4:4.8) | 4:4.8.4-3
libstdc++6(= 4.4.0) | 4.7.1-4
phonon   | 4:4.6.0.0-2


Package's Recommends field is empty.

Package's Suggests field is empty.diff --git a/gui/dialogselectmaster.cpp b/gui/dialogselectmaster.cpp
index a5e5f45..16bf619 100644
--- a/gui/dialogselectmaster.cpp
+++ b/gui/dialogselectmaster.cpp
@@ -88,7 +88,7 @@ void DialogSelectMaster::createWidgets(Mixer *ptr_mixer)
 for( int i =0; iMixer::mixers().count(); i++ )
 {
 Mixer *mixer = (Mixer::mixers())[i];
-m_cMixer-addItem( mixer-readableName() );
+m_cMixer-addItem( mixer-readableName(), mixer-id() );
  } // end for all_Mixers
 // Make the current Mixer the current item in the ComboBox
 int findIndex = m_cMixer-findText( ptr_mixer-readableName() );
@@ -120,16 +120,11 @@ void DialogSelectMaster::createWidgets(Mixer *ptr_mixer)
  */
 void DialogSelectMaster::createPageByID(int mixerId)
 {
-  //kDebug(67100)  DialogSelectMaster::createPage();
-QString selectedMixerName = m_cMixer-itemText(mixerId);
-for( int i =0; iMixer::mixers().count(); i++ )
-{
-Mixer *mixer = (Mixer::mixers())[i];
-if ( mixer-readableName() == selectedMixerName ) {
-createPage(mixer);
-break;
-}
-} // for
+QString mixer_id = m_cMixer-itemData(mixerId).toString();
+Mixer * mixer = Mixer::findMixer(mixer_id);
+
+if ( mixer != NULL )
+createPage(mixer);
 }
 
 /**
@@ -203,16 +198,9 @@ void DialogSelectMaster::apply()
 }
 else if ( Mixer::mixers().count()  1 ) {
 // find mixer that is currently active in the ComboBox
-QString selectedMixerName = m_cMixer-itemText(m_cMixer-currentIndex());
-
-for( int i =0; iMixer::mixers().count(); i++ )
-{
-mixer = (Mixer::mixers())[i];
-if ( mixer-readableName() == selectedMixerName ) {
-mixer = (Mixer::mixers())[i];
-break;
-}
-} // for
+int idx = m_cMixer-currentIndex();
+QString mixer_id = m_cMixer-itemData(idx).toString();
+mixer = Mixer::findMixer(mixer_id);
 }

 QAbstractButton* button =  m_buttonGroupForScrollView-checkedButton();


Bug#499802: [akregator] Problem is still there

2009-04-19 Thread Michal Humpula
Package: akregator
Version: 4:4.2.2-1

Kmail and other KDE PIM stuff is working just fine after restoring from 
systray. 
I think this issue existed even before upgrade to Qt 4.5. I even try to delete 
the configuration files.

If you change size and quit akregator from the main window, after new start 
you get the size you've set in previous session. This size is newly kept after 
hiding and restoring from systray. So it's seems like akregator doesn't 
remember the size of the window only between hiding and restoring from the 
systray.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.30-rc2-git4-mekka

Debian Release: squeeze/sid
  990 unstableftp.sh.cvut.cz 
  990 unstableftp.cz.debian.org 
  990 unstabledebian.cihar.com 
  990 unstabledeb.opera.com 
  500 testing ftp.cz.debian.org 
1 experimentalftp.cz.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-==
kdebase-runtime(= 4:4.2.2) | 4:4.2.2-1
kdelibs5   (= 4:4.2.2) | 4:4.2.2-2
kdepimlibs5(= 4:4.2.2) | 4:4.2.2-1
libc6(= 2.1.3) | 2.9-7
libgcc1(= 1:4.1.1) | 1:4.4-20090329-1
libkdepim4(= 4:4.2.2-1) | 4:4.2.2-1
libkontactinterfaces4 (= 4:4.2.2-1) | 4:4.2.2-1
libqt4-dbus  (= 4.4.3) | 4.5.0-1
libqt4-xml   (= 4.4.3) | 4.5.0-1
libqtcore4   (= 4.4.3) | 4.5.0-1
libqtgui4(= 4.4.3) | 4.5.0-1
libstdc++6   (= 4.1.1) | 4.4-20090329-1






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