summaryrefslogtreecommitdiffstats
path: root/kverbos/kverbos/kerfassen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kverbos/kverbos/kerfassen.cpp')
-rw-r--r--kverbos/kverbos/kerfassen.cpp18
1 files changed, 9 insertions, 9 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;