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/bindings | |
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/bindings')
-rw-r--r-- | qtsharp/src/bindings/static/QtSupport.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtsharp/src/bindings/static/QtSupport.cs b/qtsharp/src/bindings/static/QtSupport.cs index 01031446..c0ad30ed 100644 --- a/qtsharp/src/bindings/static/QtSupport.cs +++ b/qtsharp/src/bindings/static/QtSupport.cs @@ -387,8 +387,8 @@ namespace Qt { remove { EventList.Remove ("TQDropEvent", value); } } public static event QIMHandler imHandler { - add { EventList.Add ("TQIMEvent", value); } - remove { EventList.Remove ("TQIMEvent", value); } + add { EventList.Add ("QIMEvent", value); } + remove { EventList.Remove ("QIMEvent", value); } } public static event QPaintHandler paintHandler { add { EventList.Add ("TQPaintEvent", value); } |