[Uml-devel] KDE/kdesdk/umbrello/umbrello/codeimpwizard

Oliver Kellogg okellogg at users.sourceforge.net
Mon Feb 13 18:13:09 UTC 2012


SVN commit 1279941 by okellogg:

On 2012-02-13 09:42, Andi Fischer wrote:
> [...]
> Did your fix solve the problem "signal not found"?

Yes, the problem was the missing "&" on the "int" arguments.
So here's the best of both worlds now,
- QString instead of "const QString&" for normalization
- int& instead of the original "int" for proper signal profile

CCMAIL: andi.fischer at hispeed.ch


 M  +2 -2      codeimpthread.cpp  


--- trunk/KDE/kdesdk/umbrello/umbrello/codeimpwizard/codeimpthread.cpp #1279940:1279941
@@ -34,8 +34,8 @@
   : QObject(parent),
     m_file(file)
 {
-    connect(this, SIGNAL(askQuestion(const QString&,int&)),
-            this, SLOT(questionAsked(const QString&,int&)));
+    connect(this, SIGNAL(askQuestion(QString,int&)),
+            this, SLOT(questionAsked(QString,int&)));
 }
 
 /**




More information about the umbrello-devel mailing list