diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:30:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:30:46 -0600 |
commit | 999f961ff5278b84c8ffd8a91addb9343e589cf0 (patch) | |
tree | ed392c698357e3037e6d9f5f40a33797b72e6129 /kverbos | |
parent | 2d7b541a4e0095d40e37aaefbf9c4a9b9d149302 (diff) | |
download | tdeedu-999f961ff5278b84c8ffd8a91addb9343e589cf0.tar.gz tdeedu-999f961ff5278b84c8ffd8a91addb9343e589cf0.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kverbos')
-rw-r--r-- | kverbos/kverbos/kerfassen.cpp | 12 | ||||
-rw-r--r-- | kverbos/kverbos/kverbosdoc.cpp | 4 | ||||
-rw-r--r-- | kverbos/kverbos/kverbosdoc.h | 4 | ||||
-rw-r--r-- | kverbos/kverbos/kverbosuser.cpp | 2 | ||||
-rw-r--r-- | kverbos/kverbos/kverbosview.cpp | 14 | ||||
-rw-r--r-- | kverbos/kverbos/qerfassen.ui | 212 | ||||
-rw-r--r-- | kverbos/kverbos/qlernen.ui | 70 | ||||
-rw-r--r-- | kverbos/kverbos/qverbedit.ui | 2 | ||||
-rw-r--r-- | kverbos/kverbos/qverbosoptions.ui | 92 |
9 files changed, 206 insertions, 206 deletions
diff --git a/kverbos/kverbos/kerfassen.cpp b/kverbos/kverbos/kerfassen.cpp index 0fbc20c4..9ae8c2b7 100644 --- a/kverbos/kverbos/kerfassen.cpp +++ b/kverbos/kverbos/kerfassen.cpp @@ -352,42 +352,42 @@ void KErfassen::slotNewVerb() void KErfassen::slotN() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("ñ"); } void KErfassen::slotA() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("á"); } void KErfassen::slotE() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("é"); } void KErfassen::slotI() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("í"); } void KErfassen::slotO() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("ó"); } void KErfassen::slotU() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) pl->insert("ú"); } diff --git a/kverbos/kverbos/kverbosdoc.cpp b/kverbos/kverbos/kverbosdoc.cpp index 1abb6774..58f3c510 100644 --- a/kverbos/kverbos/kverbosdoc.cpp +++ b/kverbos/kverbos/kverbosdoc.cpp @@ -658,10 +658,10 @@ void KVerbosDoc::deleteContents() } // Ein Verb wird der Liste hinzugefügt. -void KVerbosDoc::appendVerb(const verbSpanish v, bool emittqStatus /*= true*/) +void KVerbosDoc::appendVerb(const verbSpanish v, bool emitStatus /*= true*/) { verbList2.append(v); - if (emittqStatus) + if (emitStatus) emit anzahlVerbenGeaendert(getAnzahl()); } diff --git a/kverbos/kverbos/kverbosdoc.h b/kverbos/kverbos/kverbosdoc.h index 41dbc2c4..0795e823 100644 --- a/kverbos/kverbos/kverbosdoc.h +++ b/kverbos/kverbos/kverbosdoc.h @@ -114,10 +114,10 @@ class KVerbosDoc : public TQObject const KURL& URL() const; /** sets the URL of the document */ void setURL(const KURL& url); - /** es wird ein Verb der Liste hinzugefügt, ist emittqStatus = true, wird auch + /** es wird ein Verb der Liste hinzugefügt, ist emitStatus = true, wird auch * die Statuszeile entsprechend angepasst. */ - void appendVerb(const verbSpanish v, bool emittqStatus = true); + void appendVerb(const verbSpanish v, bool emitStatus = true); /** prüft, ob die Liste des Dokumentes leer ist */ bool isEmpty() const; /** Gibt einen Zeiger auf die Verbliste des Dokumentes zurück */ diff --git a/kverbos/kverbos/kverbosuser.cpp b/kverbos/kverbos/kverbosuser.cpp index 90896a3b..6088e90b 100644 --- a/kverbos/kverbos/kverbosuser.cpp +++ b/kverbos/kverbos/kverbosuser.cpp @@ -227,7 +227,7 @@ bool KVerbosUser::saveUser(const int& res, const int& num) }; if (j == 1) { - TQDate d = TQDate::tqcurrentDate(); + TQDate d = TQDate::currentDate(); t << d.toString() << endl; t << res << endl; t << num << endl; diff --git a/kverbos/kverbos/kverbosview.cpp b/kverbos/kverbos/kverbosview.cpp index bb62cba5..d79c690a 100644 --- a/kverbos/kverbos/kverbosview.cpp +++ b/kverbos/kverbos/kverbosview.cpp @@ -115,7 +115,7 @@ TQString KVerbosView::deleteAccents(const TQString& s) const void KVerbosView::slotN() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("ñ"); @@ -124,7 +124,7 @@ void KVerbosView::slotN() void KVerbosView::slotA() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("á"); @@ -133,7 +133,7 @@ void KVerbosView::slotA() void KVerbosView::slotE() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("é"); @@ -142,7 +142,7 @@ void KVerbosView::slotE() void KVerbosView::slotI() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("í"); @@ -151,7 +151,7 @@ void KVerbosView::slotI() void KVerbosView::slotO() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("ó"); @@ -160,7 +160,7 @@ void KVerbosView::slotO() void KVerbosView::slotU() { - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (pl) { pl->insert("ú"); @@ -332,7 +332,7 @@ void KVerbosView::slotFont() if (corrected) { TQFont fontNormal = EditVerbo->font(); - TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget()); + TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget()); if (0 != pl) { pl->setFont(fontNormal); diff --git a/kverbos/kverbos/qerfassen.ui b/kverbos/kverbos/qerfassen.ui index 42489cfe..9717e9f5 100644 --- a/kverbos/kverbos/qerfassen.ui +++ b/kverbos/kverbos/qerfassen.ui @@ -341,7 +341,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -355,7 +355,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -369,7 +369,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -383,7 +383,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -397,7 +397,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -411,7 +411,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -441,7 +441,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -452,7 +452,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -463,7 +463,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -474,7 +474,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -485,7 +485,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -496,7 +496,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -609,7 +609,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -623,7 +623,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -637,7 +637,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -651,7 +651,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -665,7 +665,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -679,7 +679,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -709,7 +709,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -720,7 +720,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -731,7 +731,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -742,7 +742,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -753,7 +753,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -764,7 +764,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -877,7 +877,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -891,7 +891,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -905,7 +905,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -919,7 +919,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -933,7 +933,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -947,7 +947,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -977,7 +977,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -988,7 +988,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -999,7 +999,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1010,7 +1010,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1021,7 +1021,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1032,7 +1032,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1145,7 +1145,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1159,7 +1159,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1173,7 +1173,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1187,7 +1187,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1201,7 +1201,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1215,7 +1215,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1245,7 +1245,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1256,7 +1256,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1267,7 +1267,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1278,7 +1278,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1289,7 +1289,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1300,7 +1300,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_4</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1413,7 +1413,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1427,7 +1427,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1441,7 +1441,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1455,7 +1455,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1469,7 +1469,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1483,7 +1483,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1513,7 +1513,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1524,7 +1524,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1535,7 +1535,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1546,7 +1546,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1557,7 +1557,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1568,7 +1568,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_5</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1681,7 +1681,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1695,7 +1695,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1709,7 +1709,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1723,7 +1723,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1737,7 +1737,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1751,7 +1751,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1781,7 +1781,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1792,7 +1792,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1803,7 +1803,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1814,7 +1814,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1825,7 +1825,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1836,7 +1836,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_6</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -1949,7 +1949,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1963,7 +1963,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1977,7 +1977,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -1991,7 +1991,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2005,7 +2005,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2019,7 +2019,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEllos7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2049,7 +2049,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2060,7 +2060,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2071,7 +2071,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2082,7 +2082,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2093,7 +2093,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2104,7 +2104,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_7</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2231,7 +2231,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextYo8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2245,7 +2245,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextTu8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2259,7 +2259,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextEl8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2273,7 +2273,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextNosotros8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2287,7 +2287,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>TextVosotros8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -2327,7 +2327,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditYo2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2338,7 +2338,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditTu2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2349,7 +2349,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEl2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2360,7 +2360,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditNosotros2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2371,7 +2371,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditVosotros2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2382,7 +2382,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>EditEllos2_8</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -2462,7 +2462,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonN</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2476,7 +2476,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonA</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2490,7 +2490,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonE</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2504,7 +2504,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonI</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2518,7 +2518,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonO</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2532,7 +2532,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonU</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -2562,7 +2562,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>ButtonLoeschen</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>90</width> <height>0</height> @@ -2587,7 +2587,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>PushZurueck</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>90</width> <height>0</height> @@ -2601,7 +2601,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>PushWeiter</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>90</width> <height>0</height> @@ -2615,7 +2615,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>PushNewVerb</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>90</width> <height>0</height> @@ -2629,7 +2629,7 @@ und in die Liste aufgenommen wird. <property name="name"> <cstring>PushBeenden</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>90</width> <height>0</height> diff --git a/kverbos/kverbos/qlernen.ui b/kverbos/kverbos/qlernen.ui index 42efac62..c963079b 100644 --- a/kverbos/kverbos/qlernen.ui +++ b/kverbos/kverbos/qlernen.ui @@ -81,7 +81,7 @@ The user learns with this GUI.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>0</height> @@ -108,7 +108,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditAleman</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>0</height> @@ -138,7 +138,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextTiempo2</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>70</width> <height>32767</height> @@ -190,7 +190,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextYo</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -204,7 +204,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextTu</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -218,7 +218,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextEl</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -232,7 +232,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextNosotros</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -246,7 +246,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextVosotros</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -260,7 +260,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>TextEllos</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -290,7 +290,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditYo1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -301,7 +301,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditTu1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -312,7 +312,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEl1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -323,7 +323,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditNosotros1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -334,7 +334,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditVosotros1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -345,7 +345,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEllos1</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -372,7 +372,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditYo2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -383,7 +383,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditTu2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -394,7 +394,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEl2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -405,7 +405,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditNosotros2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -416,7 +416,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditVosotros2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -427,7 +427,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEllos2</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -459,7 +459,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditTu3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -470,7 +470,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEl3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -481,7 +481,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditNosotros3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -492,7 +492,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditVosotros3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -503,7 +503,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>EditEllos3</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>200</width> <height>0</height> @@ -543,7 +543,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonN</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -557,7 +557,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonA</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -571,7 +571,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonE</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -585,7 +585,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonI</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -599,7 +599,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonO</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -613,7 +613,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonU</cstring> </property> - <property name="tqmaximumSize"> + <property name="maximumSize"> <size> <width>50</width> <height>32767</height> @@ -721,7 +721,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonLoeschen</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -746,7 +746,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonKorrektur</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> @@ -768,7 +768,7 @@ The user learns with this GUI.</comment> <property name="name"> <cstring>ButtonWeiter</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>110</width> <height>0</height> diff --git a/kverbos/kverbos/qverbedit.ui b/kverbos/kverbos/qverbedit.ui index 76f4f411..60913993 100644 --- a/kverbos/kverbos/qverbedit.ui +++ b/kverbos/kverbos/qverbedit.ui @@ -76,7 +76,7 @@ und können bearbeitet werden.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> diff --git a/kverbos/kverbos/qverbosoptions.ui b/kverbos/kverbos/qverbosoptions.ui index 6f0344b5..455f292c 100644 --- a/kverbos/kverbos/qverbosoptions.ui +++ b/kverbos/kverbos/qverbosoptions.ui @@ -93,7 +93,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelTiempos</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -107,7 +107,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelPresente</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -121,7 +121,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelImperfecto</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -135,7 +135,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelIndefinido</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -149,7 +149,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelFuturo</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -163,7 +163,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelCondicional</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -180,7 +180,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="enabled"> <bool>true</bool> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -197,7 +197,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="enabled"> <bool>true</bool> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -214,7 +214,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="enabled"> <bool>true</bool> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -231,7 +231,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="enabled"> <bool>true</bool> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -251,7 +251,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -278,7 +278,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelNormal</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -300,7 +300,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -322,7 +322,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -344,7 +344,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -366,7 +366,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -388,7 +388,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -413,7 +413,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -438,7 +438,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -463,7 +463,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -488,7 +488,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -508,7 +508,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -535,7 +535,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelProgresivo</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -557,7 +557,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -579,7 +579,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -601,7 +601,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -623,7 +623,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -645,7 +645,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -670,7 +670,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -695,7 +695,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -720,7 +720,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -740,7 +740,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -757,7 +757,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -784,7 +784,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>LabelPerfecto</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -806,7 +806,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -828,7 +828,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -842,7 +842,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="name"> <cstring>TextLabel1</cstring> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -864,7 +864,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -886,7 +886,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -911,7 +911,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -936,7 +936,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -961,7 +961,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <verstretch>0</verstretch> </sizepolicy> </property> - <property name="tqminimumSize"> + <property name="minimumSize"> <size> <width>0</width> <height>28</height> @@ -981,7 +981,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -998,7 +998,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -1106,7 +1106,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> @@ -1165,7 +1165,7 @@ Zeiten geübt werden sollen und welche nicht.</comment> <property name="sizeType"> <enum>Expanding</enum> </property> - <property name="tqsizeHint"> + <property name="sizeHint"> <size> <width>20</width> <height>20</height> |