[Kde-bindings] playground/bindings/kimono
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Fri Feb 2 21:25:13 UTC 2007
SVN commit 629485 by rdale:
* Changed the SmokeMethod Attribute to include the 'munged method name'
as well as the C++ type signature of the method's arguments. This
make it easier and faster to look up the method in the Smoke library
at runtime. The SmokeMethod attribute wasn't working with static
methods as it needed to be on the interface where the static method
was defined, and not on the method itself. For instance, an instance
method is now defined like this:
[SmokeMethod("setParent#", "(QObject*)")]
public void SetParent(QObject arg1) {
ProxyQObject().SetParent(arg1);
}
And a static method is defined like this:
[SmokeMethod("sessionBus", "()")]
QDBusConnection SessionBus();
...
public static QDBusConnection SessionBus() {
return StaticQDBusConnection().SessionBus();
}
Once a methodId method selector has been looked up, it is cached inside
the SmokeMethod Attribute.
* The generation of the 'munged method names' in the Attributes is currently
wrong, and needs fixing.
CCMAIL: kde-bindings at kde.org
M +27 -0 ChangeLog
M +17 -3 Qyoto.cs
M +19 -69 SmokeInvocation.cs
M +21 -21 core/QAbstractEventDispatcher.cs
M +37 -37 core/QAbstractFileEngine.cs
M +3 -3 core/QAbstractFileEngineHandler.cs
M +68 -68 core/QAbstractItemModel.cs
M +9 -9 core/QAbstractListModel.cs
M +8 -8 core/QAbstractTableModel.cs
M +6 -6 core/QBasicTimer.cs
M +2 -2 core/QBitRef.cs
M +2 -2 core/QBool.cs
M +21 -21 core/QBuffer.cs
M +154 -154 core/QByteArray.cs
M +8 -8 core/QByteArrayMatcher.cs
M +6 -6 core/QByteRef.cs
M +42 -42 core/QChar.cs
M +29 -29 core/QCharRef.cs
M +6 -6 core/QChildEvent.cs
M +47 -47 core/QCoreApplication.cs
M +1 -1 core/QCoreApplicationExtras.cs
M +34 -34 core/QDataStream.cs
M +42 -42 core/QDate.cs
M +39 -39 core/QDateTime.cs
M +65 -65 core/QDir.cs
M +3 -3 core/QDynamicPropertyChangeEvent.cs
M +8 -8 core/QEvent.cs
M +16 -16 core/QEventLoop.cs
M +39 -39 core/QFSFileEngine.cs
M +3 -3 core/QFactoryInterface.cs
M +47 -47 core/QFile.cs
M +51 -51 core/QFileInfo.cs
M +15 -15 core/QFileSystemWatcher.cs
M +2 -2 core/QFlag.cs
M +4 -4 core/QGenericArgument.cs
M +3 -3 core/QGenericReturnArgument.cs
M +298 -298 core/QGlobalSpace.cs
M +41 -41 core/QIODevice.cs
M +4 -4 core/QLatin1Char.cs
M +15 -15 core/QLibrary.cs
M +5 -5 core/QLibraryInfo.cs
M +16 -16 core/QLine.cs
M +25 -25 core/QLineF.cs
M +71 -71 core/QLocale.cs
M +4 -4 core/QMetaClassInfo.cs
M +13 -13 core/QMetaEnum.cs
M +10 -10 core/QMetaMethod.cs
M +80 -80 core/QMetaObject.cs
M +27 -27 core/QMetaProperty.cs
M +5 -5 core/QMetaType.cs
M +25 -25 core/QMimeData.cs
M +16 -16 core/QModelIndex.cs
M +47 -46 core/QObject.cs
M +8 -8 core/QObjectCleanupHandler.cs
M +1 -1 core/QObjectUserData.cs
M +18 -18 core/QPersistentModelIndex.cs
M +13 -13 core/QPluginLoader.cs
M +13 -13 core/QPoint.cs
M +12 -12 core/QPointF.cs
M +67 -67 core/QProcess.cs
M +70 -70 core/QRect.cs
M +64 -64 core/QRectF.cs
M +33 -33 core/QRegExp.cs
M +43 -43 core/QSettings.cs
M +22 -22 core/QSignalMapper.cs
M +19 -19 core/QSize.cs
M +19 -19 core/QSizeF.cs
M +12 -12 core/QSocketNotifier.cs
M +10 -10 core/QStringMatcher.cs
M +2 -2 core/QSysInfo.cs
M +4 -4 core/QSystemLocale.cs
M +17 -17 core/QTemporaryFile.cs
M +24 -24 core/QTextCodec.cs
M +3 -3 core/QTextCodecFactoryInterface.cs
M +4 -4 core/QTextDecoder.cs
M +4 -4 core/QTextEncoder.cs
M +65 -65 core/QTextStream.cs
M +34 -34 core/QTime.cs
M +29 -29 core/QTimeLine.cs
M +17 -17 core/QTimer.cs
M +3 -3 core/QTimerEvent.cs
M +14 -14 core/QTranslator.cs
M +68 -68 core/QUrl.cs
M +12 -12 core/QUuid.cs
M +79 -79 core/QVariant.cs
M +292 -292 core/Qt.cs
M +0 -2 examples/qdbus/chat/chat_adaptor.cs
M +22 -22 gui/QAbstractButton.cs
M +10 -10 gui/QAbstractGraphicsShapeItem.cs
M +16 -16 gui/QAbstractItemDelegate.cs
M +57 -57 gui/QAbstractItemView.cs
M +7 -7 gui/QAbstractPageSetupDialog.cs
M +19 -19 gui/QAbstractPrintDialog.cs
M +17 -17 gui/QAbstractProxyModel.cs
M +37 -37 gui/QAbstractScrollArea.cs
M +25 -25 gui/QAbstractSlider.cs
M +44 -44 gui/QAbstractSpinBox.cs
M +17 -17 gui/QAbstractTextDocumentLayout.cs
M +8 -8 gui/QAccessible.cs
M +13 -13 gui/QAccessibleApplication.cs
M +4 -4 gui/QAccessibleBridge.cs
M +3 -3 gui/QAccessibleBridgeFactoryInterface.cs
M +5 -5 gui/QAccessibleEvent.cs
M +21 -21 gui/QAccessibleInterface.cs
M +3 -3 gui/QAccessibleInterfaceEx.cs
M +8 -8 gui/QAccessibleObject.cs
M +8 -8 gui/QAccessibleObjectEx.cs
M +21 -21 gui/QAccessibleWidget.cs
M +21 -21 gui/QAccessibleWidgetEx.cs
M +40 -40 gui/QAction.cs
M +5 -5 gui/QActionEvent.cs
M +18 -18 gui/QActionGroup.cs
M +88 -88 gui/QApplication.cs
M +3 -3 gui/QApplicationExtras.cs
M +13 -13 gui/QBitmap.cs
M +40 -40 gui/QBoxLayout.cs
M +27 -27 gui/QBrush.cs
M +20 -20 gui/QButtonGroup.cs
M +43 -43 gui/QCalendarWidget.cs
M +18 -18 gui/QCheckBox.cs
M +38 -38 gui/QCleanlooksStyle.cs
M +27 -27 gui/QClipboard.cs
M +1 -1 gui/QClipboardEvent.cs
M +2 -2 gui/QCloseEvent.cs
M +89 -89 gui/QColor.cs
M +12 -12 gui/QColorDialog.cs
M +12 -12 gui/QColormap.cs
M +78 -78 gui/QComboBox.cs
M +35 -35 gui/QCommonStyle.cs
M +33 -33 gui/QCompleter.cs
M +9 -9 gui/QConicalGradient.cs
M +10 -10 gui/QContextMenuEvent.cs
M +19 -19 gui/QCursor.cs
M +31 -31 gui/QDataWidgetMapper.cs
M +7 -7 gui/QDateEdit.cs
M +37 -37 gui/QDateTimeEdit.cs
M +5 -5 gui/QDesktopServices.cs
M +23 -23 gui/QDesktopWidget.cs
M +14 -14 gui/QDial.cs
M +37 -37 gui/QDialog.cs
M +25 -25 gui/QDialogButtonBox.cs
M +51 -51 gui/QDirModel.cs
M +21 -21 gui/QDockWidget.cs
M +12 -12 gui/QDoubleSpinBox.cs
M +8 -8 gui/QDoubleValidator.cs
M +17 -17 gui/QDrag.cs
M +2 -2 gui/QDragEnterEvent.cs
M +2 -2 gui/QDragLeaveEvent.cs
M +8 -8 gui/QDragMoveEvent.cs
M +3 -3 gui/QDragResponseEvent.cs
M +17 -17 gui/QDropEvent.cs
M +9 -9 gui/QErrorMessage.cs
M +58 -58 gui/QFileDialog.cs
M +5 -5 gui/QFileIconProvider.cs
M +3 -3 gui/QFileOpenEvent.cs
M +6 -6 gui/QFocusEvent.cs
M +10 -10 gui/QFocusFrame.cs
M +67 -67 gui/QFont.cs
M +8 -8 gui/QFontComboBox.cs
M +30 -30 gui/QFontDatabase.cs
M +7 -7 gui/QFontDialog.cs
M +18 -18 gui/QFontInfo.cs
M +39 -39 gui/QFontMetrics.cs
M +34 -34 gui/QFontMetricsF.cs
M +13 -13 gui/QFrame.cs
M +9 -9 gui/QGradient.cs
M +28 -28 gui/QGraphicsEllipseItem.cs
M +122 -122 gui/QGraphicsItem.cs
M +30 -30 gui/QGraphicsItemAnimation.cs
M +12 -12 gui/QGraphicsItemGroup.cs
M +26 -26 gui/QGraphicsLineItem.cs
M +20 -20 gui/QGraphicsPathItem.cs
M +25 -25 gui/QGraphicsPixmapItem.cs
M +22 -22 gui/QGraphicsPolygonItem.cs
M +24 -24 gui/QGraphicsRectItem.cs
M +90 -90 gui/QGraphicsScene.cs
M +13 -13 gui/QGraphicsSceneContextMenuEvent.cs
M +24 -24 gui/QGraphicsSceneDragDropEvent.cs
M +4 -4 gui/QGraphicsSceneEvent.cs
M +7 -7 gui/QGraphicsSceneHelpEvent.cs
M +9 -9 gui/QGraphicsSceneHoverEvent.cs
M +27 -27 gui/QGraphicsSceneMouseEvent.cs
M +15 -15 gui/QGraphicsSceneWheelEvent.cs
M +21 -21 gui/QGraphicsSimpleTextItem.cs
M +172 -172 gui/QGraphicsTextItem.cs
M +98 -98 gui/QGraphicsView.cs
M +46 -46 gui/QGridLayout.cs
M +23 -23 gui/QGroupBox.cs
M +5 -5 gui/QHBoxLayout.cs
M +95 -95 gui/QHeaderView.cs
M +8 -8 gui/QHelpEvent.cs
M +2 -2 gui/QHideEvent.cs
M +4 -4 gui/QHoverEvent.cs
M +36 -36 gui/QIcon.cs
M +2 -2 gui/QIconDragEvent.cs
M +7 -7 gui/QIconEngine.cs
M +106 -106 gui/QImage.cs
M +20 -20 gui/QImageIOHandler.cs
M +42 -42 gui/QImageReader.cs
M +24 -24 gui/QImageWriter.cs
M +18 -18 gui/QInputContext.cs
M +7 -7 gui/QInputContextFactory.cs
M +6 -6 gui/QInputContextFactoryInterface.cs
M +26 -26 gui/QInputDialog.cs
M +4 -4 gui/QInputEvent.cs
M +10 -10 gui/QInputMethodEvent.cs
M +7 -7 gui/QIntValidator.cs
M +28 -28 gui/QItemDelegate.cs
M +4 -4 gui/QItemEditorCreatorBase.cs
M +7 -7 gui/QItemEditorFactory.cs
M +8 -8 gui/QItemSelection.cs
M +36 -36 gui/QItemSelectionModel.cs
M +23 -23 gui/QItemSelectionRange.cs
M +19 -19 gui/QKeyEvent.cs
M +24 -24 gui/QKeySequence.cs
M +27 -27 gui/QLCDNumber.cs
M +40 -40 gui/QLabel.cs
M +43 -43 gui/QLayout.cs
M +19 -19 gui/QLayoutItem.cs
M +72 -72 gui/QLineEdit.cs
M +10 -10 gui/QLinearGradient.cs
M +46 -46 gui/QListView.cs
M +58 -58 gui/QListWidget.cs
M +50 -50 gui/QListWidgetItem.cs
M +43 -43 gui/QMainWindow.cs
M +35 -35 gui/QMatrix.cs
M +60 -60 gui/QMenu.cs
M +42 -42 gui/QMenuBar.cs
M +82 -82 gui/QMessageBox.cs
M +6 -6 gui/QMimeSource.cs
M +11 -11 gui/QMouseEvent.cs
M +4 -4 gui/QMoveEvent.cs
M +47 -47 gui/QMovie.cs
M +6 -6 gui/QPageSetupDialog.cs
M +14 -14 gui/QPaintDevice.cs
M +38 -38 gui/QPaintEngine.cs
M +18 -18 gui/QPaintEngineState.cs
M +5 -5 gui/QPaintEvent.cs
M +215 -215 gui/QPainter.cs
M +46 -46 gui/QPainterPath.cs
M +16 -16 gui/QPainterPathStroker.cs
M +46 -46 gui/QPalette.cs
M +30 -30 gui/QPen.cs
M +29 -29 gui/QPicture.cs
M +28 -28 gui/QPictureIO.cs
M +81 -81 gui/QPixmap.cs
M +9 -9 gui/QPixmapCache.cs
M +36 -36 gui/QPlastiqueStyle.cs
M +19 -19 gui/QPolygon.cs
M +12 -12 gui/QPolygonF.cs
M +7 -7 gui/QPrintDialog.cs
M +8 -8 gui/QPrintEngine.cs
M +53 -53 gui/QPrinter.cs
M +14 -14 gui/QProgressBar.cs
M +27 -27 gui/QProgressDialog.cs
M +21 -21 gui/QPushButton.cs
M +14 -14 gui/QRadialGradient.cs
M +12 -12 gui/QRadioButton.cs
M +6 -6 gui/QRegExpValidator.cs
M +36 -36 gui/QRegion.cs
M +4 -4 gui/QResizeEvent.cs
M +18 -18 gui/QRubberBand.cs
M +20 -20 gui/QScrollArea.cs
M +16 -16 gui/QScrollBar.cs
M +18 -18 gui/QSessionManager.cs
M +14 -14 gui/QShortcut.cs
M +6 -6 gui/QShortcutEvent.cs
M +2 -2 gui/QShowEvent.cs
M +11 -11 gui/QSizeGrip.cs
M +16 -16 gui/QSizePolicy.cs
M +14 -14 gui/QSlider.cs
M +55 -55 gui/QSortFilterProxyModel.cs
M +16 -16 gui/QSound.cs
M +15 -15 gui/QSpacerItem.cs
M +13 -13 gui/QSpinBox.cs
M +25 -25 gui/QSplashScreen.cs
M +32 -32 gui/QSplitter.cs
M +16 -16 gui/QSplitterHandle.cs
M +22 -22 gui/QStackedLayout.cs
M +16 -16 gui/QStackedWidget.cs
M +89 -89 gui/QStandardItem.cs
M +77 -77 gui/QStandardItemModel.cs
M +28 -28 gui/QStatusBar.cs
M +3 -3 gui/QStatusTipEvent.cs
M +21 -21 gui/QStringListModel.cs
M +51 -51 gui/QStyle.cs
M +4 -4 gui/QStyleFactory.cs
M +3 -3 gui/QStyleFactoryInterface.cs
M +4 -4 gui/QStyleHintReturn.cs
M +2 -2 gui/QStyleHintReturnMask.cs
M +7 -7 gui/QStyleOption.cs
M +4 -4 gui/QStyleOptionButton.cs
M +4 -4 gui/QStyleOptionComboBox.cs
M +5 -5 gui/QStyleOptionComplex.cs
M +4 -4 gui/QStyleOptionDockWidget.cs
M +4 -4 gui/QStyleOptionFocusRect.cs
M +4 -4 gui/QStyleOptionFrame.cs
M +5 -5 gui/QStyleOptionFrameV2.cs
M +4 -4 gui/QStyleOptionGraphicsItem.cs
M +4 -4 gui/QStyleOptionGroupBox.cs
M +4 -4 gui/QStyleOptionHeader.cs
M +4 -4 gui/QStyleOptionMenuItem.cs
M +4 -4 gui/QStyleOptionProgressBar.cs
M +5 -5 gui/QStyleOptionProgressBarV2.cs
M +4 -4 gui/QStyleOptionRubberBand.cs
M +4 -4 gui/QStyleOptionSizeGrip.cs
M +4 -4 gui/QStyleOptionSlider.cs
M +4 -4 gui/QStyleOptionSpinBox.cs
M +4 -4 gui/QStyleOptionTab.cs
M +4 -4 gui/QStyleOptionTabBarBase.cs
M +5 -5 gui/QStyleOptionTabV2.cs
M +4 -4 gui/QStyleOptionTabWidgetFrame.cs
M +4 -4 gui/QStyleOptionTitleBar.cs
M +4 -4 gui/QStyleOptionToolBar.cs
M +4 -4 gui/QStyleOptionToolBox.cs
M +4 -4 gui/QStyleOptionToolButton.cs
M +4 -4 gui/QStyleOptionViewItem.cs
M +5 -5 gui/QStyleOptionViewItemV2.cs
M +13 -13 gui/QStylePainter.cs
M +7 -7 gui/QSyntaxHighlighter.cs
M +22 -22 gui/QSystemTrayIcon.cs
M +41 -41 gui/QTabBar.cs
M +42 -42 gui/QTabWidget.cs
M +83 -83 gui/QTableView.cs
M +87 -87 gui/QTableWidget.cs
M +47 -47 gui/QTableWidgetItem.cs
M +10 -10 gui/QTableWidgetSelectionRange.cs
M +20 -20 gui/QTabletEvent.cs
M +22 -22 gui/QTextBlock.cs
M +21 -21 gui/QTextBlockFormat.cs
M +6 -6 gui/QTextBlockGroup.cs
M +2 -2 gui/QTextBlockUserData.cs
M +31 -31 gui/QTextBrowser.cs
M +39 -39 gui/QTextCharFormat.cs
M +53 -53 gui/QTextCursor.cs
M +41 -41 gui/QTextDocument.cs
M +5 -5 gui/QTextDocumentFragment.cs
M +115 -115 gui/QTextEdit.cs
M +42 -42 gui/QTextFormat.cs
M +12 -12 gui/QTextFragment.cs
M +11 -11 gui/QTextFrame.cs
M +19 -19 gui/QTextFrameFormat.cs
M +2 -2 gui/QTextFrameLayoutData.cs
M +9 -9 gui/QTextImageFormat.cs
M +14 -14 gui/QTextInlineObject.cs
M +8 -8 gui/QTextItem.cs
M +37 -37 gui/QTextLayout.cs
M +7 -7 gui/QTextLength.cs
M +26 -26 gui/QTextLine.cs
M +13 -13 gui/QTextList.cs
M +7 -7 gui/QTextListFormat.cs
M +4 -4 gui/QTextObject.cs
M +2 -2 gui/QTextObjectInterface.cs
M +18 -18 gui/QTextOption.cs
M +16 -16 gui/QTextTable.cs
M +13 -13 gui/QTextTableCell.cs
M +16 -16 gui/QTextTableFormat.cs
M +7 -7 gui/QTimeEdit.cs
M +36 -36 gui/QToolBar.cs
M +3 -3 gui/QToolBarChangeEvent.cs
M +30 -30 gui/QToolBox.cs
M +26 -26 gui/QToolButton.cs
M +9 -9 gui/QToolTip.cs
M +88 -88 gui/QTreeView.cs
M +75 -75 gui/QTreeWidget.cs
M +70 -70 gui/QTreeWidgetItem.cs
M +8 -8 gui/QTreeWidgetItemIterator.cs
M +11 -11 gui/QUndoCommand.cs
M +31 -31 gui/QUndoGroup.cs
M +37 -37 gui/QUndoStack.cs
M +15 -15 gui/QUndoView.cs
M +5 -5 gui/QVBoxLayout.cs
M +6 -6 gui/QValidator.cs
M +9 -9 gui/QWhatsThis.cs
M +3 -3 gui/QWhatsThisClickedEvent.cs
M +14 -14 gui/QWheelEvent.cs
M +226 -226 gui/QWidget.cs
M +12 -12 gui/QWidgetAction.cs
M +12 -12 gui/QWidgetItem.cs
M +5 -5 gui/QWindowStateChangeEvent.cs
M +34 -34 gui/QWindowsStyle.cs
M +37 -37 gui/QWorkspace.cs
M +19 -19 gui/QX11EmbedContainer.cs
M +14 -14 gui/QX11EmbedWidget.cs
M +63 -63 network/QAbstractSocket.cs
M +49 -49 network/QFtp.cs
M +17 -17 network/QHostAddress.cs
M +18 -18 network/QHostInfo.cs
M +53 -53 network/QHttp.cs
M +22 -22 network/QHttpHeader.cs
M +16 -16 network/QHttpRequestHeader.cs
M +18 -18 network/QHttpResponseHeader.cs
M +9 -9 network/QNetworkAddressEntry.cs
M +12 -12 network/QNetworkInterface.cs
M +20 -20 network/QNetworkProxy.cs
M +27 -27 network/QTcpServer.cs
M +5 -5 network/QTcpSocket.cs
M +16 -16 network/QUdpSocket.cs
M +33 -33 network/QUrlInfo.cs
M +1 -1 opengl/QGL.cs
M +15 -15 opengl/QGLColormap.cs
M +38 -38 opengl/QGLContext.cs
M +53 -53 opengl/QGLFormat.cs
M +15 -15 opengl/QGLFramebufferObject.cs
M +27 -27 opengl/QGLPixelBuffer.cs
M +75 -75 opengl/QGLWidget.cs
M +1 -1 qdbus/QDBus.cs
M +6 -6 qdbus/QDBusAbstractAdaptor.cs
M +36 -36 qdbus/QDBusAbstractInterface.cs
M +34 -34 qdbus/QDBusArgument.cs
M +30 -30 qdbus/QDBusConnection.cs
M +2 -2 qdbus/QDBusConnectionInterface.cs
M +9 -9 qdbus/QDBusError.cs
M +5 -5 qdbus/QDBusInterface.cs
M +25 -25 qdbus/QDBusMessage.cs
M +4 -4 qdbus/QDBusMetaType.cs
M +8 -8 qdbus/QDBusServer.cs
M +61 -45 qyoto.cpp
M +1 -1 sql/QSql.cs
M +50 -50 sql/QSqlDatabase.cs
M +27 -27 sql/QSqlDriver.cs
M +2 -2 sql/QSqlDriverCreatorBase.cs
M +3 -3 sql/QSqlDriverFactoryInterface.cs
M +17 -17 sql/QSqlError.cs
M +32 -32 sql/QSqlField.cs
M +13 -13 sql/QSqlIndex.cs
M +45 -45 sql/QSqlQuery.cs
M +34 -34 sql/QSqlQueryModel.cs
M +29 -29 sql/QSqlRecord.cs
M +7 -7 sql/QSqlRelation.cs
M +24 -24 sql/QSqlRelationalTableModel.cs
M +1 -1 sql/QSqlResult.cs
M +58 -58 sql/QSqlTableModel.cs
M +30 -30 svg/QSvgRenderer.cs
M +14 -14 svg/QSvgWidget.cs
M +9 -9 xml/QDomAttr.cs
M +4 -4 xml/QDomCDATASection.cs
M +12 -12 xml/QDomCharacterData.cs
M +4 -4 xml/QDomComment.cs
M +55 -55 xml/QDomDocument.cs
M +4 -4 xml/QDomDocumentFragment.cs
M +10 -10 xml/QDomDocumentType.cs
M +36 -36 xml/QDomElement.cs
M +7 -7 xml/QDomEntity.cs
M +4 -4 xml/QDomEntityReference.cs
M +10 -10 xml/QDomImplementation.cs
M +16 -16 xml/QDomNamedNodeMap.cs
M +71 -71 xml/QDomNode.cs
M +10 -10 xml/QDomNodeList.cs
M +6 -6 xml/QDomNotation.cs
M +7 -7 xml/QDomProcessingInstruction.cs
M +5 -5 xml/QDomText.cs
M +17 -17 xml/QXmlAttributes.cs
M +14 -14 xml/QXmlContentHandler.cs
M +5 -5 xml/QXmlDTDHandler.cs
M +6 -6 xml/QXmlDeclHandler.cs
M +30 -30 xml/QXmlDefaultHandler.cs
M +4 -4 xml/QXmlEntityResolver.cs
M +6 -6 xml/QXmlErrorHandler.cs
M +11 -11 xml/QXmlInputSource.cs
M +10 -10 xml/QXmlLexicalHandler.cs
M +4 -4 xml/QXmlLocator.cs
M +12 -12 xml/QXmlNamespaceSupport.cs
M +12 -12 xml/QXmlParseException.cs
M +20 -20 xml/QXmlReader.cs
M +22 -22 xml/QXmlSimpleReader.cs
More information about the Kde-bindings
mailing list