summaryrefslogtreecommitdiffstats
path: root/kverbos
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-04 02:22:38 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-04 02:22:38 +0000
commit98a12d05a48814bec3870b9a6d5865475cfa1c95 (patch)
treea711801e47696fb0cf162abd7330e0b5b480ba39 /kverbos
parent421a1845137c7c396b5d03bce53237fcb149d602 (diff)
downloadtdeedu-98a12d05a48814bec3870b9a6d5865475cfa1c95.tar.gz
tdeedu-98a12d05a48814bec3870b9a6d5865475cfa1c95.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1211429 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kverbos')
-rw-r--r--kverbos/kverbos/kerfassen.cpp18
-rw-r--r--kverbos/kverbos/kverbos.cpp82
-rw-r--r--kverbos/kverbos/kverbos.h18
-rw-r--r--kverbos/kverbos/kverbosdoc.cpp6
-rw-r--r--kverbos/kverbos/kverbosdoc.h14
-rw-r--r--kverbos/kverbos/kverbosuser.cpp6
-rw-r--r--kverbos/kverbos/kverbosview.cpp28
-rw-r--r--kverbos/kverbos/kverbosview.h4
-rw-r--r--kverbos/kverbos/qerfassen.ui224
-rw-r--r--kverbos/kverbos/qlernen.ui80
-rw-r--r--kverbos/kverbos/qresult.ui8
-rw-r--r--kverbos/kverbos/qverbedit.ui6
-rw-r--r--kverbos/kverbos/qverbosoptions.ui96
-rw-r--r--kverbos/kverbos/verbspanish.cpp44
-rw-r--r--kverbos/kverbos/verbspanish.h8
15 files changed, 321 insertions, 321 deletions
diff --git a/kverbos/kverbos/kerfassen.cpp b/kverbos/kverbos/kerfassen.cpp
index 9ae8c2b7..9bec422f 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*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("ñ");
}
void KErfassen::slotA()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("á");
}
void KErfassen::slotE()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("é");
}
void KErfassen::slotI()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("í");
}
void KErfassen::slotO()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("ó");
}
void KErfassen::slotU()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
pl->insert("ú");
}
@@ -395,7 +395,7 @@ void KErfassen::slotU()
// A verb that is in the dialog should be addded to the list.
// - if it is completely new verb then the verb should be added at its alphabetical position
// - if there is a verb which is equal to the new verb then a dialog asks whether the
-// verb should be added again or replaced or if the operation shoul be canceled.
+// verb should be added again or tqreplaced or if the operation shoul be canceled.
spanishVerbList::Iterator KErfassen::verbErfassen()
{
verbSpanish v = verbFromWidget();
@@ -420,10 +420,10 @@ spanishVerbList::Iterator KErfassen::verbErfassen()
{
// Das Verb wurde in der Liste gefunden.
switch (KMessageBox::warningYesNoCancel(this,
- i18n("The current verb is already in the list.\nDo you want to replace it?\nIf you do not want to change the list press 'Cancel'."),
+ i18n("The current verb is already in the list.\nDo you want to tqreplace it?\nIf you do not want to change the list press 'Cancel'."),
i18n("Warning"), i18n("Replace"), i18n("Do Not Replace")))
{
- case KMessageBox::Yes: // the verb at the position is replaced by v.
+ case KMessageBox::Yes: // the verb at the position is tqreplaced by v.
*it = v;
changed = true;
break;
diff --git a/kverbos/kverbos/kverbos.cpp b/kverbos/kverbos/kverbos.cpp
index 96d6930a..87f30998 100644
--- a/kverbos/kverbos/kverbos.cpp
+++ b/kverbos/kverbos/kverbos.cpp
@@ -39,7 +39,7 @@
#include "kfeedercontrol.h"
#include "prefs.h"
-// ID Nummern für die Statuszeile
+// ID Nummern für die tqStatuszeile
#define ID_STATUS_MSG 1
#define ID_TRAINED_MSG 2
#define ID_CORRECT_MSG 3
@@ -182,8 +182,8 @@ void KVerbosApp::initDocument()
{
doc = new KVerbosDoc(this);
doc->newDocument();
- connect(doc, TQT_SIGNAL(anzahlVerbenGeaendert(int)), this, TQT_SLOT(slotStatusVerbMsg(int)));
- connect(this, TQT_SIGNAL(testAnzahl(int)), this, TQT_SLOT(slotStatusVerbMsg(int)));
+ connect(doc, TQT_SIGNAL(anzahlVerbenGeaendert(int)), this, TQT_SLOT(slotqStatusVerbMsg(int)));
+ connect(this, TQT_SIGNAL(testAnzahl(int)), this, TQT_SLOT(slotqStatusVerbMsg(int)));
}
void KVerbosApp::initView()
@@ -197,18 +197,18 @@ void KVerbosApp::initView()
setCentralWidget(view);
setCaption(doc->URL().fileName(),false);
//
- connect(view, TQT_SIGNAL(numberTrainedChanged(int)), this, TQT_SLOT(slotStatusTrainedMsg(int)));
- connect(view, TQT_SIGNAL(numberCorrectChanged(int)), this, TQT_SLOT(slotStatusCorrectMsg(int)));
+ connect(view, TQT_SIGNAL(numberTrainedChanged(int)), this, TQT_SLOT(slotqStatusTrainedMsg(int)));
+ connect(view, TQT_SIGNAL(numberCorrectChanged(int)), this, TQT_SLOT(slotqStatusCorrectMsg(int)));
connect(view, TQT_SIGNAL(informKFeeder(int)), this, TQT_SLOT(slotFeedIt(int)));
}
void KVerbosApp::openDocumentFile(const KURL& url)
{
- slotStatusMsg(i18n("Opening file..."));
+ slotqStatusMsg(i18n("Opening file..."));
doc->openDocument( url);
fileOpenRecent->addURL( url );
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
@@ -348,17 +348,17 @@ bool KVerbosApp::queryExit()
void KVerbosApp::slotFileNewWindow()
{
- slotStatusMsg(i18n("Opening a new application window..."));
+ slotqStatusMsg(i18n("Opening a new application window..."));
KVerbosApp *new_window= new KVerbosApp();
new_window->show();
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileNew()
{
- slotStatusMsg(i18n("Creating new document..."));
+ slotqStatusMsg(i18n("Creating new document..."));
if(!doc->saveModified())
{
@@ -371,12 +371,12 @@ void KVerbosApp::slotFileNew()
setCaption(doc->URL().fileName(), false);
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileOpen()
{
- slotStatusMsg(i18n("Opening file..."));
+ slotqStatusMsg(i18n("Opening file..."));
if(!doc->saveModified())
{
@@ -396,12 +396,12 @@ void KVerbosApp::slotFileOpen()
fileOpenRecent->addURL( url );
}
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileOpenRecent(const KURL& url)
{
- slotStatusMsg(i18n("Opening file..."));
+ slotqStatusMsg(i18n("Opening file..."));
if(!doc->saveModified())
{
@@ -414,12 +414,12 @@ void KVerbosApp::slotFileOpenRecent(const KURL& url)
setCaption(url.fileName(), false);
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileOpenStandard()
{
- slotStatusMsg(i18n("Opening file..."));
+ slotqStatusMsg(i18n("Opening file..."));
TQString userLanguage = Prefs::userLanguage();
if(!doc->saveModified())
{
@@ -438,12 +438,12 @@ void KVerbosApp::slotFileOpenStandard()
fileOpenRecent->addURL( url );
}
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileSave()
{
- slotStatusMsg(i18n("Saving file..."));
+ slotqStatusMsg(i18n("Saving file..."));
if (doc->URL().fileName() == i18n("Untitled"))
{
// Hier liegt ein Fall vor, der zu "Save as ... " gehört.
@@ -453,12 +453,12 @@ void KVerbosApp::slotFileSave()
{
doc->saveDocument(doc->URL());
};
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileSaveAs()
{
- slotStatusMsg(i18n("Saving file with a new filename..."));
+ slotqStatusMsg(i18n("Saving file with a new filename..."));
KURL url=KFileDialog::getSaveURL(TQDir::currentDirPath(),
i18n("*|All Files"), this, i18n("Save As"));
@@ -469,21 +469,21 @@ void KVerbosApp::slotFileSaveAs()
setCaption(url.fileName(),doc->isModified());
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileClose()
{
- slotStatusMsg(i18n("Closing file..."));
+ slotqStatusMsg(i18n("Closing file..."));
close();
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFilePrint()
{
- slotStatusMsg(i18n("Printing..."));
+ slotqStatusMsg(i18n("Printing..."));
TQPrinter printer;
if (printer.setup(this))
@@ -491,12 +491,12 @@ void KVerbosApp::slotFilePrint()
view->print(&printer);
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotFileQuit()
{
- slotStatusMsg(i18n("Exiting..."));
+ slotqStatusMsg(i18n("Exiting..."));
saveOptions();
// close the first window, the list makes the next one the first again.
// This ensures that queryClose() is called on each window to ask for closing
@@ -512,31 +512,31 @@ void KVerbosApp::slotFileQuit()
break;
}
}
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotEditCut()
{
- slotStatusMsg(i18n("Cutting selection..."));
+ slotqStatusMsg(i18n("Cutting selection..."));
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotEditCopy()
{
- slotStatusMsg(i18n("Copying selection to clipboard..."));
+ slotqStatusMsg(i18n("Copying selection to clipboard..."));
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
void KVerbosApp::slotEditPaste()
{
- slotStatusMsg(i18n("Inserting clipboard contents..."));
+ slotqStatusMsg(i18n("Inserting clipboard contents..."));
- slotStatusMsg(i18n("Ready."));
+ slotqStatusMsg(i18n("Ready."));
}
-void KVerbosApp::slotStatusMsg(const TQString &text)
+void KVerbosApp::slotqStatusMsg(const TQString &text)
{
///////////////////////////////////////////////////////////////////
// change status message permanently
@@ -544,8 +544,8 @@ void KVerbosApp::slotStatusMsg(const TQString &text)
statusBar()->changeItem(text, ID_STATUS_MSG);
}
-// Gibt die Anzahl der Verben in der Statuszeile aus
-void KVerbosApp::slotStatusVerbMsg(int n)
+// Gibt die Anzahl der Verben in der tqStatuszeile aus
+void KVerbosApp::slotqStatusVerbMsg(int n)
{
TQString s;
s.setNum(n,10);
@@ -553,8 +553,8 @@ void KVerbosApp::slotStatusVerbMsg(int n)
statusBar()->changeItem(s, ID_VERBS_MSG);
}
-// Gibt die Anzahl der geübten Verben in der Statuszeile aus.
-void KVerbosApp::slotStatusTrainedMsg(int n)
+// Gibt die Anzahl der geübten Verben in der tqStatuszeile aus.
+void KVerbosApp::slotqStatusTrainedMsg(int n)
{
TQString s;
s.setNum(n,10);
@@ -563,7 +563,7 @@ void KVerbosApp::slotStatusTrainedMsg(int n)
}
// Gibt die Anzahl der richtig geübten Verben aus.
-void KVerbosApp::slotStatusCorrectMsg(int n)
+void KVerbosApp::slotqStatusCorrectMsg(int n)
{
TQString s;
s.setNum(n,10);
@@ -584,7 +584,7 @@ void KVerbosApp::slotEditErfassen()
};
delete pDlgErfassen;
pDlgErfassen = 0;
- // Anzahl in der Statuszeile anpassen
+ // Anzahl in der tqStatuszeile anpassen
emit testAnzahl(doc->getAnzahl());
}
@@ -600,7 +600,7 @@ void KVerbosApp::slotEditBearbeiten()
}
delete pDlgEdit;
pDlgEdit = 0;
- // Anzahl in der Statuszeile anpassen
+ // Anzahl in der tqStatuszeile anpassen
emit testAnzahl(doc->getAnzahl());
}
diff --git a/kverbos/kverbos/kverbos.h b/kverbos/kverbos/kverbos.h
index 982ee0c1..8ab29fc7 100644
--- a/kverbos/kverbos/kverbos.h
+++ b/kverbos/kverbos/kverbos.h
@@ -78,7 +78,7 @@ class KVerbosApp : public KMainWindow
bool doitStrict() const { return correctStrict; }
protected:
- /** save general Options like all bar positions and status as well as the geometry and the recent file list to the configuration
+ /** save general Options like all bar positions and status as well as the tqgeometry and the recent file list to the configuration
* file
*/
void saveOptions();
@@ -123,7 +123,7 @@ class KVerbosApp : public KMainWindow
virtual void readProperties(KConfig *_cfg);
signals:
- /** Dieses Signal zeigt dem Dokument an, dass die Statuszeile mit der richtigen
+ /** Dieses Signal zeigt dem Dokument an, dass die tqStatuszeile mit der richtigen
* Verbanzahl aktualisiert werden sollte.
*/
void testAnzahl(int);
@@ -164,15 +164,15 @@ class KVerbosApp : public KMainWindow
* current actions.
* @param text the text that is displayed in the statusbar
*/
- void slotStatusMsg(const TQString &text);
- /** Gibt die Anzahl der Verben in der Statuszeile aus */
- void slotStatusVerbMsg(int);
- /** Gibt die Anzahl der geübten Verben in der Statuszeile aus.
+ void slotqStatusMsg(const TQString &text);
+ /** Gibt die Anzahl der Verben in der tqStatuszeile aus */
+ void slotqStatusVerbMsg(int);
+ /** Gibt die Anzahl der geübten Verben in der tqStatuszeile aus.
*/
- void slotStatusTrainedMsg(int);
- /** Gibt die Anzahl der richtig eingegebenen Verben in der Statuszeile aus.
+ void slotqStatusTrainedMsg(int);
+ /** Gibt die Anzahl der richtig eingegebenen Verben in der tqStatuszeile aus.
*/
- void slotStatusCorrectMsg(int);
+ void slotqStatusCorrectMsg(int);
/** öffnet einen Dialog mit dem neue Verben erfasst werden können.
*/
void slotEditErfassen();
diff --git a/kverbos/kverbos/kverbosdoc.cpp b/kverbos/kverbos/kverbosdoc.cpp
index 632f10b3..0cb37703 100644
--- a/kverbos/kverbos/kverbosdoc.cpp
+++ b/kverbos/kverbos/kverbosdoc.cpp
@@ -92,7 +92,7 @@ void KVerbosDoc::slotUpdateAllViews(KVerbosView *sender)
if(pViewList)
for(w=pViewList->first(); w!=0; w=pViewList->next())
if(w!=sender)
- w->repaint();
+ w->tqrepaint();
}
bool KVerbosDoc::saveModified()
@@ -658,10 +658,10 @@ void KVerbosDoc::deleteContents()
}
// Ein Verb wird der Liste hinzugefügt.
-void KVerbosDoc::appendVerb(const verbSpanish v, bool emitStatus /*= true*/)
+void KVerbosDoc::appendVerb(const verbSpanish v, bool emitqStatus /*= true*/)
{
verbList2.append(v);
- if (emitStatus)
+ if (emitqStatus)
emit anzahlVerbenGeaendert(getAnzahl());
}
diff --git a/kverbos/kverbos/kverbosdoc.h b/kverbos/kverbos/kverbosdoc.h
index efe5d98c..d2c9f48c 100644
--- a/kverbos/kverbos/kverbosdoc.h
+++ b/kverbos/kverbos/kverbosdoc.h
@@ -42,9 +42,9 @@ class KVerbosUser;
* The KVerbosDoc class provides a document object that can be used in conjunction with
* the classes KVerbosApp and KVerbosView to create a document-view model for standard KDE
* applications based on KApplication and KMainWindow. Thereby, the document object
- * is created by the KVerbosApp instance and contains the document structure with the
+ * is created by the KVerbosApp instance and tqcontains the document structure with the
* according methods for manipulation of the document data by KVerbosView objects. Also,
- * KVerbosDoc contains the methods for serialization of the document data from and to files.
+ * KVerbosDoc tqcontains the methods for serialization of the document data from and to files.
*
* Die Dokumentenklasse hält eine Liste der verfügbaren Verben vor. Aus dieser Liste wird
* eines ausgewählt, das gelernt werden soll. Die View-Klasse kann dieses Verb abfragen und
@@ -113,10 +113,10 @@ class KVerbosDoc : public QObject
const KURL& URL() const;
/** sets the URL of the document */
void setURL(const KURL& url);
- /** es wird ein Verb der Liste hinzugefügt, ist emitStatus = true, wird auch
- * die Statuszeile entsprechend angepasst.
+ /** es wird ein Verb der Liste hinzugefügt, ist emitqStatus = true, wird auch
+ * die tqStatuszeile entsprechend angepasst.
*/
- void appendVerb(const verbSpanish v, bool emitStatus = true);
+ void appendVerb(const verbSpanish v, bool emitqStatus = true);
/** prüft, ob die Liste des Dokumentes leer ist */
bool isEmpty() const;
/** Gibt einen Zeiger auf die Verbliste des Dokumentes zurück */
@@ -140,8 +140,8 @@ class KVerbosDoc : public QObject
public slots:
/**
- * calls repaint() on all views connected to the document object and is called by the view by which the document has been changed.
- * As this view normally repaints itself, it is excluded from the paintEvent.
+ * calls tqrepaint() on all views connected to the document object and is called by the view by which the document has been changed.
+ * As this view normally tqrepaints itself, it is excluded from the paintEvent.
*/
void slotUpdateAllViews(KVerbosView *sender);
diff --git a/kverbos/kverbos/kverbosuser.cpp b/kverbos/kverbos/kverbosuser.cpp
index 64d319af..2794b051 100644
--- a/kverbos/kverbos/kverbosuser.cpp
+++ b/kverbos/kverbos/kverbosuser.cpp
@@ -35,7 +35,7 @@ KVerbosUser::KVerbosUser(spanishVerbList* pL, TQString n/*=DEFAULTUSER*/)
// try to read the user-information if there is one.
int pos;
while ((pos = n.find(' ')) != -1)
- n.replace(pos, 1, "_");
+ n.tqreplace(pos, 1, "_");
TQFile file(locateLocal("data", "/kverbos/data/"+name+".kverbos"));
if ( file.open(IO_ReadOnly) )
{
@@ -210,7 +210,7 @@ bool KVerbosUser::saveUser(const int& res, const int& num)
{
int pos;
while ((pos = name.find(' ')) != -1)
- name.replace(pos, 1, "_");
+ name.tqreplace(pos, 1, "_");
TQFile file(locateLocal("data", "/kverbos/data/"+name+".kverbos"));
if ( file.open(IO_WriteOnly) )
{
@@ -227,7 +227,7 @@ bool KVerbosUser::saveUser(const int& res, const int& num)
};
if (j == 1)
{
- TQDate d = TQDate::currentDate();
+ TQDate d = TQDate::tqcurrentDate();
t << d.toString() << endl;
t << res << endl;
t << num << endl;
diff --git a/kverbos/kverbos/kverbosview.cpp b/kverbos/kverbos/kverbosview.cpp
index 83f184df..85cdde16 100644
--- a/kverbos/kverbos/kverbosview.cpp
+++ b/kverbos/kverbos/kverbosview.cpp
@@ -78,7 +78,7 @@ KVerbosView::~KVerbosView()
KVerbosDoc* KVerbosView::getDocument() const
{
- KVerbosApp *theApp=(KVerbosApp *) parentWidget();
+ KVerbosApp *theApp=(KVerbosApp *) tqparentWidget();
return theApp->getDocument();
}
@@ -102,12 +102,12 @@ TQString KVerbosView::deleteAccents(const TQString& s) const
for (unsigned int i=0; i<s2.length(); i++)
{
TQString t = s2.mid(i, 1);
- if (t == "á") s2.replace(i, 1, "a");
- if (t == "é") s2.replace(i, 1, "e");
- if (t == "í") s2.replace(i, 1, "i");
- if (t == "ó") s2.replace(i, 1, "o");
- if (t == "ú") s2.replace(i, 1, "u");
- if (t == "ñ") s2.replace(i, 1, "n");
+ if (t == "á") s2.tqreplace(i, 1, "a");
+ if (t == "é") s2.tqreplace(i, 1, "e");
+ if (t == "í") s2.tqreplace(i, 1, "i");
+ if (t == "ó") s2.tqreplace(i, 1, "o");
+ if (t == "ú") s2.tqreplace(i, 1, "u");
+ if (t == "ñ") s2.tqreplace(i, 1, "n");
};
};
return s2;
@@ -115,7 +115,7 @@ TQString KVerbosView::deleteAccents(const TQString& s) const
void KVerbosView::slotN()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("ñ");
@@ -124,7 +124,7 @@ void KVerbosView::slotN()
void KVerbosView::slotA()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("á");
@@ -133,7 +133,7 @@ void KVerbosView::slotA()
void KVerbosView::slotE()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("é");
@@ -142,7 +142,7 @@ void KVerbosView::slotE()
void KVerbosView::slotI()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("í");
@@ -151,7 +151,7 @@ void KVerbosView::slotI()
void KVerbosView::slotO()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("ó");
@@ -160,7 +160,7 @@ void KVerbosView::slotO()
void KVerbosView::slotU()
{
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (pl)
{
pl->insert("ú");
@@ -332,7 +332,7 @@ void KVerbosView::slotFont()
if (corrected)
{
TQFont fontNormal = EditVerbo->font();
- TQLineEdit* pl = dynamic_cast<TQLineEdit*>(focusWidget());
+ TQLineEdit* pl = dynamic_cast<TQLineEdit*>(tqfocusWidget());
if (0 != pl)
{
pl->setFont(fontNormal);
diff --git a/kverbos/kverbos/kverbosview.h b/kverbos/kverbos/kverbosview.h
index 3690c72a..4d3b3d2f 100644
--- a/kverbos/kverbos/kverbosview.h
+++ b/kverbos/kverbos/kverbosview.h
@@ -73,7 +73,7 @@ public:
*/
KVerbosDoc* getDocument() const;
- /** contains the implementation for printing functionality */
+ /** tqcontains the implementation for printing functionality */
void print(TQPrinter *pPrinter);
/** This funktion erases all accents from the letters of a string
*/
@@ -103,7 +103,7 @@ public slots:
*/
virtual void slotFont();
/** if the time is a progressiv or a perfect form the input of the yo-Editbox
- * which contains the gerund or the partizip is copied into the others.
+ * which tqcontains the gerund or the partizip is copied into the others.
*/
virtual void slotCopyText();
/** Die Ansicht wird aufgefordert sich das aktuelle Verb vom Dokument zu holen
diff --git a/kverbos/kverbos/qerfassen.ui b/kverbos/kverbos/qerfassen.ui
index 90465a19..cbc49a0a 100644
--- a/kverbos/kverbos/qerfassen.ui
+++ b/kverbos/kverbos/qerfassen.ui
@@ -9,7 +9,7 @@ und in die Liste aufgenommen wird.
<property name="name">
<cstring>QErfassen</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -65,7 +65,7 @@ und in die Liste aufgenommen wird.
<property name="text">
<string>Verb:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignLeft</set>
</property>
<property name="hAlign" stdset="0">
@@ -83,7 +83,7 @@ und in die Liste aufgenommen wird.
<property name="text">
<string>In the foreign language:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -240,7 +240,7 @@ und in die Liste aufgenommen wird.
<property name="text">
<string>gerundio:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -258,7 +258,7 @@ und in die Liste aufgenommen wird.
<property name="text">
<string>participio:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -341,7 +341,7 @@ und in die Liste aufgenommen wird.
<property name="name">
<cstring>TextYo1</cstring>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<size>
<width>90</width>
<height>0</height>
@@ -2792,5 +2792,5 @@ und in die Liste aufgenommen wird.
<slot>slotWeiter()</slot>
<slot>slotZurueck()</slot>
</slots>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kverbos/kverbos/qlernen.ui b/kverbos/kverbos/qlernen.ui
index 9b4b1d33..25599794 100644
--- a/kverbos/kverbos/qlernen.ui
+++ b/kverbos/kverbos/qlernen.ui
@@ -7,7 +7,7 @@ The user learns with this GUI.</comment>
<property name="name">
<cstring>QLernen</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -63,7 +63,7 @@ The user learns with this GUI.</comment>
<property name="text">
<string>Verb:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -81,7 +81,7 @@ The user learns with this GUI.</comment>
<verstretch>0</verstretch>
</sizepolicy>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<size>
<width>0</width>
<height>0</height>
@@ -98,7 +98,7 @@ The user learns with this GUI.</comment>
<property name="text">
<string>In the foreign language:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -108,7 +108,7 @@ The user learns with this GUI.</comment>
<property name="name">
<cstring>EditAleman</cstring>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<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="maximumSize">
+ <property name="tqmaximumSize">
<size>
<width>50</width>
<height>32767</height>
@@ -650,7 +650,7 @@ The user learns with this GUI.</comment>
<property name="text">
<string>Result:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignCenter</set>
</property>
<property name="hAlign" stdset="0">
@@ -721,7 +721,7 @@ The user learns with this GUI.</comment>
<property name="name">
<cstring>ButtonLoeschen</cstring>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<size>
<width>110</width>
<height>0</height>
@@ -1017,5 +1017,5 @@ The user learns with this GUI.</comment>
<slot>slotU()</slot>
<slot>slotWeiter()</slot>
</slots>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kverbos/kverbos/qresult.ui b/kverbos/kverbos/qresult.ui
index a8e93bb0..d5e92e84 100644
--- a/kverbos/kverbos/qresult.ui
+++ b/kverbos/kverbos/qresult.ui
@@ -4,7 +4,7 @@
<property name="name">
<cstring>QResult</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -92,7 +92,7 @@
<property name="text">
<string>User:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -129,7 +129,7 @@
<property name="text">
<string>Number of training sessions:</string>
</property>
- <property name="alignment">
+ <property name="tqalignment">
<set>AlignVCenter|AlignRight</set>
</property>
<property name="hAlign" stdset="0">
@@ -271,5 +271,5 @@
<slots>
<slot>slotDlgEnde()</slot>
</slots>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kverbos/kverbos/qverbedit.ui b/kverbos/kverbos/qverbedit.ui
index f16b76de..c99a2907 100644
--- a/kverbos/kverbos/qverbedit.ui
+++ b/kverbos/kverbos/qverbedit.ui
@@ -9,7 +9,7 @@ und können bearbeitet werden.</comment>
<property name="name">
<cstring>QVerbEdit</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -76,7 +76,7 @@ und können bearbeitet werden.</comment>
<property name="sizeType">
<enum>Expanding</enum>
</property>
- <property name="sizeHint">
+ <property name="tqsizeHint">
<size>
<width>20</width>
<height>20</height>
@@ -192,5 +192,5 @@ und können bearbeitet werden.</comment>
<slot>slotDelete()</slot>
<slot>slotDlgEnde()</slot>
</slots>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kverbos/kverbos/qverbosoptions.ui b/kverbos/kverbos/qverbosoptions.ui
index da432531..e91ee37c 100644
--- a/kverbos/kverbos/qverbosoptions.ui
+++ b/kverbos/kverbos/qverbosoptions.ui
@@ -9,7 +9,7 @@ Zeiten geübt werden sollen und welche nicht.</comment>
<property name="name">
<cstring>QVerbosOptions</cstring>
</property>
- <property name="geometry">
+ <property name="tqgeometry">
<rect>
<x>0</x>
<y>0</y>
@@ -93,7 +93,7 @@ Zeiten geübt werden sollen und welche nicht.</comment>
<property name="name">
<cstring>LabelTiempos</cstring>
</property>
- <property name="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="minimumSize">
+ <property name="tqminimumSize">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="sizeHint">
+ <property name="tqsizeHint">
<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="sizeHint">
+ <property name="tqsizeHint">
<size>
<width>20</width>
<height>20</height>
@@ -1224,5 +1224,5 @@ Zeiten geübt werden sollen und welche nicht.</comment>
<slot>slotDlgEnde()</slot>
<slot>slotCancel()</slot>
</slots>
-<layoutdefaults spacing="6" margin="11"/>
+<tqlayoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kverbos/kverbos/verbspanish.cpp b/kverbos/kverbos/verbspanish.cpp
index 3fa76dc6..424a3d92 100644
--- a/kverbos/kverbos/verbspanish.cpp
+++ b/kverbos/kverbos/verbspanish.cpp
@@ -585,7 +585,7 @@ bool verbSpanish::conjugateAll()
int pos = gerund.findRev("e");
if (pos>=0)
{
- gerund.replace(pos, 1, "i");
+ gerund.tqreplace(pos, 1, "i");
};
}
gerund += "iendo#";
@@ -677,7 +677,7 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
{
pos = s.findRev("e");
if (pos>=0)
- s.replace(pos, 1, "ie");
+ s.tqreplace(pos, 1, "ie");
};
};
break;
@@ -692,7 +692,7 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
{
pos = s.findRev("o", -3);
if (pos>=0)
- s.replace(pos, 1, "ue");
+ s.tqreplace(pos, 1, "ue");
};
};
break;
@@ -707,7 +707,7 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
{
pos = s.findRev("u");
if (pos>=0)
- s.replace(pos, 1, "ue");
+ s.tqreplace(pos, 1, "ue");
};
};
break;
@@ -722,7 +722,7 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
pos = st.findRev("e");
if (pos>=0)
{
- st.replace(pos, 1, "i");
+ st.tqreplace(pos, 1, "i");
s = st + verbEndings[time][getEnding(good)][person];
};
}
@@ -733,7 +733,7 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
pos = st.findRev("e");
if (pos>=0)
{
- st.replace(pos, 1, "i");
+ st.tqreplace(pos, 1, "i");
s = st + verbEndings[time][getEnding(good)][person];
};
}
@@ -747,89 +747,89 @@ bool verbSpanish::groupVerb(TQString &s, int time/*=-1*/, int person/*=-1*/)
case 6: // <c -> qu> (vor e wird c zu qu)
pos = s.findRev("ce");
if (pos>=0)
- s.replace(pos, 2, "que");
+ s.tqreplace(pos, 2, "que");
else
{
pos = s.findRev("cé");
if (pos>=0)
- s.replace(pos, 2, "qué");
+ s.tqreplace(pos, 2, "qué");
}
break;
case 7: // <g -> gu> (vor e wird g zu gu)
pos = s.findRev("ge");
if (pos>=0)
- s.replace(pos, 2, "gue");
+ s.tqreplace(pos, 2, "gue");
else
{
pos = s.findRev("gé");
if (pos>=0)
- s.replace(pos, 2, "gué");
+ s.tqreplace(pos, 2, "gué");
}
break;
case 8: // <z -> c> (vor e wird z zu c)
pos = s.findRev("ze");
if (pos>=0)
- s.replace(pos, 2, "ce");
+ s.tqreplace(pos, 2, "ce");
else
{
pos = s.findRev("zé");
if (pos>=0)
- s.replace(pos, 2, "cé");
+ s.tqreplace(pos, 2, "cé");
}
break;
case 9: // <gu -> gü> (vor e wird gu zu gü)
pos = s.findRev("gue");
if (pos>=0)
- s.replace(pos, 3, "güe");
+ s.tqreplace(pos, 3, "güe");
else
{
pos = s.findRev("gué");
if (pos>=0)
- s.replace(pos, 3, "güé");
+ s.tqreplace(pos, 3, "güé");
}
break;
case 10: // <c -> z> (vor o und a wird c zu z)
pos = s.findRev("co");
if (pos>=0)
- s.replace(pos, 2, "zo");
+ s.tqreplace(pos, 2, "zo");
else
{
pos = s.findRev("ca");
if (pos>=0)
- s.replace(pos, 2, "za");
+ s.tqreplace(pos, 2, "za");
};
break;
case 11: // <g -> j> (vor o und a wird g zu j)
pos = s.findRev("ga");
if (pos>=0)
- s.replace(pos, 2, "ja");
+ s.tqreplace(pos, 2, "ja");
else
{
pos = s.findRev("go");
if (pos>=0)
- s.replace(pos, 2, "jo");
+ s.tqreplace(pos, 2, "jo");
};
break;
case 12: // <gu -> g> (vor o und a wird gu zu g)
pos = s.findRev("guo");
if (pos>=0)
- s.replace(pos, 3, "go");
+ s.tqreplace(pos, 3, "go");
else
{
pos = s.findRev("gua");
if (pos>=0)
- s.replace(pos, 3, "ga");
+ s.tqreplace(pos, 3, "ga");
};
break;
case 13: // <qu -> c> (vor o und a wird qu zu c)
pos = s.findRev("quo");
if (pos>=0)
- s.replace(pos, 3, "co");
+ s.tqreplace(pos, 3, "co");
else
{
pos = s.findRev("qua");
if (pos>=0)
- s.replace(pos, 3, "ca");
+ s.tqreplace(pos, 3, "ca");
};
break;
case 14: // <accent like 'enviar'>
diff --git a/kverbos/kverbos/verbspanish.h b/kverbos/kverbos/verbspanish.h
index f621718d..1f17567c 100644
--- a/kverbos/kverbos/verbspanish.h
+++ b/kverbos/kverbos/verbspanish.h
@@ -44,13 +44,13 @@ enum persons {yo, tu, el, nosotros, vosotros, ellos};
typedef TQString formArray[MAX_TIEMPOS][PERSONEN];
typedef TQString endingsArray[MAX_TIEMPOS][VERBMUSTER][PERSONEN];
-/** This class contains all the information belonging to one verb:
+/** This class tqcontains all the information belonging to one verb:
*
* - the foreign and the spanish meaning
* - the form of the gerund and the participle
* - the different time forms of the verb
* - if it is irregular or to which group the verb belongs
- * - if the object already contains all the possible forms
+ * - if the object already tqcontains all the possible forms
*
* Some information belongs to all verbs. It is stored in static variables.
* - a lists of the regular endings
@@ -278,10 +278,10 @@ public:
/** The forms of the verb haber. They are needed for perfect forms
*/
static TQString haber[MAX_TIEMPOS][PERSONEN];
- /** This array contains the names of the time forms as strings
+ /** This array tqcontains the names of the time forms as strings
*/
static TQString timeNames[MAX_TIEMPOS*MAX_SUBTYPES];
- /** This array contains the names of the different verb groups
+ /** This array tqcontains the names of the different verb groups
*/
static TQString groupNames[MAX_GRUPPEN];
static int maxTiempos;