Hello community,

here is the log from the commit of package kimtoy for openSUSE:Factory checked 
in at 2012-10-16 11:47:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimtoy (Old)
 and      /work/SRC/openSUSE:Factory/.kimtoy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimtoy", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimtoy/kimtoy.changes    2012-06-26 
16:06:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kimtoy.new/kimtoy.changes       2012-10-16 
11:47:08.000000000 +0200
@@ -1,0 +2,6 @@
+Sat Oct 13 17:48:37 UTC 2012 - [email protected]
+
+- update to 1.9.2
+  * try to fix ghost taskbar entry, second try
+
+-------------------------------------------------------------------

Old:
----
  kimtoy-1.9.1.tar.bz2

New:
----
  kimtoy-1.9.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kimtoy.spec ++++++
--- /var/tmp/diff_new_pack.FlfGak/_old  2012-10-16 11:47:09.000000000 +0200
+++ /var/tmp/diff_new_pack.FlfGak/_new  2012-10-16 11:47:09.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           kimtoy
-Version:        1.9.1
+Version:        1.9.2
 Release:        0
 Summary:        An input method frontend for KDE
 License:        GPL-2.0+



++++++ kimtoy-1.9.1.tar.bz2 -> kimtoy-1.9.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimtoy-1.9.1/ChangeLog new/kimtoy-1.9.2/ChangeLog
--- old/kimtoy-1.9.1/ChangeLog  2012-06-24 15:05:08.000000000 +0200
+++ new/kimtoy-1.9.2/ChangeLog  2012-06-28 12:56:52.000000000 +0200
@@ -1,3 +1,6 @@
+2012-06-28 v1.9.2
+try to fix ghost taskbar entry, second try
+
 2012-06-24 v1.9.1
 try to fix ghost taskbar entry
 filter menu is style-sware
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimtoy-1.9.1/ChangeLog.zh_CN 
new/kimtoy-1.9.2/ChangeLog.zh_CN
--- old/kimtoy-1.9.1/ChangeLog.zh_CN    2012-06-24 15:05:52.000000000 +0200
+++ new/kimtoy-1.9.2/ChangeLog.zh_CN    2012-06-28 12:56:24.000000000 +0200
@@ -1,3 +1,6 @@
+2012-06-28 v1.9.2
+第二次尝试修复任务栏非预期的条目出现问题
+
 2012-06-24 v1.9.1
 尝试修复任务栏非预期的条目出现问题
 过滤菜单遵循风格设置
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimtoy-1.9.1/main.cpp new/kimtoy-1.9.2/main.cpp
--- old/kimtoy-1.9.1/main.cpp   2012-06-24 15:04:10.000000000 +0200
+++ new/kimtoy-1.9.2/main.cpp   2012-06-28 12:55:49.000000000 +0200
@@ -29,7 +29,7 @@
 int main(int argc, char** argv)
 {
     KAboutData aboutData("kimtoy", 0, ki18n("KIMToy"),
-                         "1.9.1", ki18n("The KDE input method toy"),
+                         "1.9.2", ki18n("The KDE input method toy"),
                          KAboutData::License_GPL, ki18n("(c) 2011-2012, Ni 
Hui"));
     aboutData.addAuthor(ki18n("Ni Hui"), ki18n("Author"), 
"[email protected]");
     aboutData.setProgramIconName("draw-freehand");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimtoy-1.9.1/statusbar.cpp 
new/kimtoy-1.9.2/statusbar.cpp
--- old/kimtoy-1.9.1/statusbar.cpp      2012-06-24 14:26:23.000000000 +0200
+++ new/kimtoy-1.9.2/statusbar.cpp      2012-06-26 11:22:17.000000000 +0200
@@ -233,6 +233,7 @@
 void StatusBar::showEvent(QShowEvent* event)
 {
     KWindowSystem::setState(winId(), NET::SkipTaskbar | NET::SkipPager | 
NET::KeepAbove);
+    KWindowSystem::setType(winId(), NET::Dock);
 }
 
 void StatusBar::slotEnable(bool enable)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimtoy-1.9.1/themelistmodel.cpp 
new/kimtoy-1.9.2/themelistmodel.cpp
--- old/kimtoy-1.9.1/themelistmodel.cpp 2012-03-08 15:11:10.000000000 +0100
+++ new/kimtoy-1.9.2/themelistmodel.cpp 2012-06-26 09:55:08.000000000 +0200
@@ -111,10 +111,12 @@
         m_previewJob = 0;
     }
 
-    beginRemoveRows(QModelIndex(), 0, m_themes.count() - 1);
-    m_themes.clear();
-    m_previews.clear();
-    endRemoveRows();
+    if (!m_themes.isEmpty()) {
+        beginRemoveRows(QModelIndex(), 0, m_themes.count() - 1);
+        m_themes.clear();
+        m_previews.clear();
+        endRemoveRows();
+    }
 
     loadNoneTheme();
     loadPlasmaThemes();

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to