Revision: 7295
Author: nogu.dev
Date: Sat Sep 10 20:50:58 2011
Log: * qt4/pref/customwidgets.cpp
- (CustomTable::setDefault): Set dialog title.
http://code.google.com/p/uim/source/detail?r=7295
Modified:
/trunk/qt4/pref/customwidgets.cpp
=======================================
--- /trunk/qt4/pref/customwidgets.cpp Sat Sep 10 20:25:18 2011
+++ /trunk/qt4/pref/customwidgets.cpp Sat Sep 10 20:50:58 2011
@@ -1257,6 +1257,7 @@
void CustomTable::slotEditButtonClicked()
{
TableEditForm dialog( this );
+ dialog.setWindowTitle( _FU8( m_custom->label ) );
dialog.setCustomTable( m_custom->value->as_table );
if ( dialog.exec() == QDialog::Accepted ) {
m_custom->value->as_table = dialog.customTable();