Hallo zusammen!

Ich versuche gerade die Installation von qt 3 auf meinem frischen LFS zu
umgehen und bin auf einige Probleme beim Übersetzen gestoßen.

Eines davon lässt sich IMHO leicht beheben, wenn es jemand
ins Repository eincheckt. Der angefügte Patch behebt zumindest
ein Problem beim Kompilieren.

Scheint leider aber nur die Spitze des Eisbergs zu sein. Momentan
stoße ich auf das Problem, dass sich QBankManager nach Abholen
des Kontostandes nicht mehr bedienen lässt. Der entsprechende
Dialog wird ohne Rahmen angezeigt, die Buttons reagieren nicht.

Mal schauen, ob ich mit Valgrind irgend etwas Verdächtiges finde.

Erwartet aber keine Wunder, ich bin mit qt nicht sonderlich
vertraut. :)

Gruß,
Stephan



Index: src/kbanking/libs/kbanking.cpp
===================================================================
--- src/kbanking/libs/kbanking.cpp	(Revision 451)
+++ src/kbanking/libs/kbanking.cpp	(Arbeitskopie)
@@ -1362,7 +1362,7 @@
     Account *acc;
 
     b=EditTransaction::createDatedTransfer(this, t,
-					   tr("New Dated Transfer"),
+					   QWidget::tr("New Dated Transfer"),
 					   parent, true);
     if (!b) {
       DBG_INFO(0, "User aborted");
@@ -1393,11 +1393,11 @@
     if (!ba) {
       DBG_ERROR(0, "Account not available");
       QMessageBox::critical(parent,
-			    tr("Account Not Available"),
-			    tr("The account you requested is not "
+			    QWidget::tr("Account Not Available"),
+			    QWidget::tr("The account you requested is not "
                                "available\n"
                                "with any backend."),
-                            tr("Dismiss"), QString::null);
+                            QWidget::tr("Dismiss"), QString::null);
       return -1;
     }
 
@@ -1407,11 +1407,11 @@
     if (rv) {
       DBG_NOTICE(0, "Job is not available (%d)", rv);
       QMessageBox::critical(parent,
-                            tr("Job Not Available"),
-                            tr("The job you requested is not "
+                            QWidget::tr("Job Not Available"),
+                            QWidget::tr("The job you requested is not "
                                "available with\n"
                                "the backend which handles parent account.\n"),
-                            tr("Dismiss"), QString::null);
+                            QWidget::tr("Dismiss"), QString::null);
       AB_Job_free(job);
       return -1;
     }
@@ -1425,8 +1425,8 @@
     case AB_BankInfoCheckResult_NotOk:
       DBG_INFO(0, "Account check result: %d", res);
       i=QMessageBox::warning(parent,
-                             tr("Warning"),
-                             tr("<qt>"
+                             QWidget::tr("Warning"),
+                             QWidget::tr("<qt>"
                                 "<p>"
                                 "The given bank code and account number "
                                 "combination is invalid."
@@ -1446,8 +1446,8 @@
     case AB_BankInfoCheckResult_UnknownBank:
       DBG_INFO(0, "Account check result: %d", res);
       i=QMessageBox::warning(parent,
-                             tr("Warning"),
-                             tr("<qt>"
+                             QWidget::tr("Warning"),
+                             QWidget::tr("<qt>"
                                 "<p>"
                                 "The given bank code is invalid."
                                 "</p>"
@@ -1483,8 +1483,8 @@
       if (rv) {
         DBG_NOTICE(0, "Could not set transfer (%d)", rv);
         int res = QMessageBox::critical(parent,
-                                  tr("Bad Transfer Data"),
-                                  tr("<qt>"
+                                  QWidget::tr("Bad Transfer Data"),
+                                  QWidget::tr("<qt>"
                                      "<p>"
                                      "There seems to be some errors "
                                      "in the dated transfer data."
------------------------------------------------------------------------------
_______________________________________________
Aqbanking-devel mailing list
Aqbanking-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aqbanking-devel

Reply via email to