diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
commit | 95b02a470fa233548b3c3be0cff13caf4c88ba21 (patch) | |
tree | 3e3f85a208a9450e8552e17c23f4b4f3ab5acdbb /qtsharp/src/generator | |
parent | 37fb195dc2faceddc010981e2648cdb9cd04a43f (diff) | |
download | tdebindings-95b02a470fa233548b3c3be0cff13caf4c88ba21.tar.gz tdebindings-95b02a470fa233548b3c3be0cff13caf4c88ba21.zip |
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*
This fixes the Kopete MSN protocol among other things
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtsharp/src/generator')
-rw-r--r-- | qtsharp/src/generator/QTypeMap.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qtsharp/src/generator/QTypeMap.cs b/qtsharp/src/generator/QTypeMap.cs index fdba1342..321c4738 100644 --- a/qtsharp/src/generator/QTypeMap.cs +++ b/qtsharp/src/generator/QTypeMap.cs @@ -182,7 +182,7 @@ namespace QtCSharp { mastermap.Add ("ScaleMode", "TQImage.ScaleMode"); mastermap.Add ("PaintDeviceFlags", "TQInternal.PaintDeviceFlags"); mastermap.Add ("Rules", "TQJpUnicodeConv.Rules"); - mastermap.Add ("SegmentStyle", "TQLCDNumber.SegmentStyle"); + mastermap.Add ("SegmentStyle", "QLCDNumber.SegmentStyle"); mastermap.Add ("LayoutMode", "TQListBox.LayoutMode"); mastermap.Add ("WidthMode", "TQListView.WidthMode"); mastermap.Add ("RenameAction", "TQListView.RenameAction"); @@ -193,11 +193,11 @@ namespace QtCSharp { mastermap.Add ("Access", "QMetaData.Access"); mastermap.Add ("Flags", "TQMetaProperty.Flags"); mastermap.Add ("Status", "TQMovie.Status"); - mastermap.Add ("InstanceMode", "TQNPInstance.InstanceMode"); - mastermap.Add ("StreamMode", "TQNPInstance.StreamMode"); + mastermap.Add ("InstanceMode", "QNPInstance.InstanceMode"); + mastermap.Add ("StreamMode", "QNPInstance.StreamMode"); mastermap.Add ("Operation", "TQNetworkProtocol.Operation"); mastermap.Add ("ConnectionState", "TQNetworkProtocol.ConnectionState"); - mastermap.Add ("DisposalMethod", "TQPNGImageWriter.DisposalMethod"); + mastermap.Add ("DisposalMethod", "QPNGImageWriter.DisposalMethod"); mastermap.Add ("PDevCmd", "TQPaintDevice.PDevCmd"); mastermap.Add ("CoordinateMode", "TQPainter.CoordinateMode"); mastermap.Add ("TextDirection", "TQPainter.TextDirection"); @@ -287,7 +287,7 @@ namespace QtCSharp { mastermap.Add ("TQMimeSource", "IQMimeSource"); mastermap.Add ("TQLayoutItem", "IQLayoutItem"); mastermap.Add ("TQUrl", "IQUrl"); - mastermap.Add ("TQIODevice", "IQIODevice"); + mastermap.Add ("QIODevice", "IQIODevice"); mastermap.Add ("TQXmlContentHandler", "IQXmlContentHandler"); mastermap.Add ("TQXmlErrorHandler", "IQXmlErrorHandler"); mastermap.Add ("TQXmlDTDHandler", "IQXmlDTDHandler"); @@ -305,10 +305,10 @@ namespace QtCSharp { //mastermap.Add ("Direction", "TQChar.Direction"); //mastermap.Add ("Reason", "TQContextMenuEvent.Reason"); //mastermap.Add ("Reason", "TQFocusEvent.Reason"); - //mastermap.Add ("Reason", "TQNPInstance.Reason"); + //mastermap.Add ("Reason", "QNPInstance.Reason"); //mastermap.Add ("Mode", "TQFileDialog.Mode"); //mastermap.Add ("Mode", "TQIconSet.Mode"); - //mastermap.Add ("Mode", "TQLCDNumber.Mode"); + //mastermap.Add ("Mode", "QLCDNumber.Mode"); //mastermap.Add ("Mode", "TQSqlCursor.Mode"); //mastermap.Add ("Shape", "TQFrame.Shape"); //mastermap.Add ("Shape", "TQTabBar.Shape"); @@ -375,7 +375,7 @@ namespace QtCSharp { interfaces.Add ("TQMimeSource", "IQMimeSource"); interfaces.Add ("TQLayoutItem", "IQLayoutItem"); interfaces.Add ("TQUrl", "IQUrl"); - interfaces.Add ("TQIODevice", "IQIODevice"); + interfaces.Add ("QIODevice", "IQIODevice"); interfaces.Add ("TQXmlContentHandler", "IQXmlContentHandler"); interfaces.Add ("TQXmlErrorHandler", "IQXmlErrorHandler"); interfaces.Add ("TQXmlDTDHandler", "IQXmlDTDHandler"); |