[Kde-bindings] KDE/kdebindings/ruby/qtruby
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Tue Jun 19 15:46:33 UTC 2007
SVN commit 677638 by rdale:
* Released Qt4 QtRuby 1.4.8 on Rubyforge
* Fixed an error in the QGraphicsPixmapItem class which made it impossible
to instantiate
* Building QtRuby against Qt 4.2 failed because of a reference to
the Qt 4.3 QMdiSubWindow class not being #ifdef'd correctly. Thanks to
mhlmi on #qtruby irc for reporting these two bugs.
CCMAIL: kde-bindings at kde.org
M +9 -0 ChangeLog
M +1 -2 src/handlers.cpp
--- trunk/KDE/kdebindings/ruby/qtruby/ChangeLog #677637:677638
@@ -1,3 +1,12 @@
+2007-06-19 Richard Dale <rdale at foton.es>
+
+ * Released Qt4 QtRuby 1.4.8 on Rubyforge
+ * Fixed an error in the QGraphicsPixmapItem class which made it impossible
+ to instantiate
+ * Building QtRuby against Qt 4.2 failed because of a reference to
+ the Qt 4.3 QMdiSubWindow class not being #ifdef'd correctly. Thanks to
+ mhlmi on #qtruby irc for reporting these two bugs.
+
2007-06-18 Richard Dale <rdale at foton.es>
* When a Qt::Object is subclassed more than once, a Qt::MetaObject is
--- trunk/KDE/kdebindings/ruby/qtruby/src/handlers.cpp #677637:677638
@@ -592,7 +592,7 @@
case 6:
return "Qt::GraphicsLineItem";
case 7:
- return "Qt:GraphicsPixmapItem";
+ return "Qt::GraphicsPixmapItem";
case 8:
return "Qt::GraphicsTextItem";
case 9:
@@ -2306,7 +2306,6 @@
{ "QList<QKeySequence>&", marshall_QKeySequenceList },
{ "QList<QListWidgetItem*>", marshall_QListWidgetItemList },
{ "QList<QListWidgetItem*>&", marshall_QListWidgetItemList },
- { "QList<QMdiSubWindow*>", marshall_QMdiSubWindowList },
{ "QList<QModelIndex>", marshall_QModelIndexList },
{ "QList<QModelIndex>&", marshall_QModelIndexList },
{ "QList<QNetworkAddressEntry>", marshall_QNetworkAddressEntryList },
More information about the Kde-bindings
mailing list