Revision: 7387
Author:   nogu.dev
Date:     Sun Jan  1 06:19:24 2012
Log:      * qt4/chardict/qt4.cpp
  - (main): Set window icon to uim-icon.png.
* qt4/pref/qt4.cpp
  - (main): Ditto.
* qt4/switcher/qt4.cpp
  - (main): Ditto.
http://code.google.com/p/uim/source/detail?r=7387

Modified:
 /trunk/qt4/chardict/qt4.cpp
 /trunk/qt4/pref/qt4.cpp
 /trunk/qt4/switcher/qt4.cpp

=======================================
--- /trunk/qt4/chardict/qt4.cpp Sat Mar 26 18:48:08 2011
+++ /trunk/qt4/chardict/qt4.cpp Sun Jan  1 06:19:24 2012
@@ -95,6 +95,7 @@

     KUimCharDict cdict;
     cdict.changeMode( m );
+    cdict.setWindowIcon( QIcon( UIM_PIXMAPSDIR "/uim-icon.png" ) );
     cdict.resize( 600, 400 );
     cdict.show();

=======================================
--- /trunk/qt4/pref/qt4.cpp     Sat Sep 10 06:32:36 2011
+++ /trunk/qt4/pref/qt4.cpp     Sun Jan  1 06:19:24 2012
@@ -739,6 +739,7 @@

     UimPrefDialog *dlg = new UimPrefDialog();
     dlg->resize( DEFAULT_WINDOW_WIDTH, DEFAULT_WINDOW_HEIGHT );
+    dlg->setWindowIcon( QIcon( UIM_PIXMAPSDIR "/uim-icon.png" ) );
     dlg->show();

     return a.exec();
=======================================
--- /trunk/qt4/switcher/qt4.cpp Thu Jan  6 18:09:56 2011
+++ /trunk/qt4/switcher/qt4.cpp Sun Jan  1 06:19:24 2012
@@ -73,6 +73,7 @@
     QApplication a( argc, argv );

     UimImSwitcher switcher;
+    switcher.setWindowIcon( QIcon( UIM_PIXMAPSDIR "/uim-icon.png" ) );
     switcher.resize( 550, 400 );
     switcher.setWindowTitle( _( "uim input method switcher" ) );
     switcher.show();

Reply via email to