Перейти до основного вмісту

Pretty types debugging of Qt functions in XCode

To have Qt types in pretty shape in XCode lldb debugger use code from KDevelop project:

  1. Clone  git://anongit.kde.org/kdevelop
  2. command script import /Users/oomel/kdevelop/plugins/lldb/formatters/qt.py 
Enjoy!
This has to be done only once.

Коментарі


  1. diff --git a/plugins/lldb/formatters/qt.py b/plugins/lldb/formatters/qt.py
    index ece10a1476..d5d053eb7c 100644
    --- a/plugins/lldb/formatters/qt.py
    +++ b/plugins/lldb/formatters/qt.py
    @@ -23,7 +23,7 @@ from __future__ import print_function
    import time
    import datetime as dt
    import string
    -from urlparse import urlsplit, urlunsplit
    +from urllib.parse import urlsplit, urlunsplit

    import locale
    import lldb

    ВідповістиВидалити

Дописати коментар

Популярні дописи з цього блогу

Home assistant - modbus - HHC-N8I8OP

Thanks to https://www.cncwiki.org/index.php?title=HHC-N8I8OP  I managed to connect this buggy module to home assistant using modbus integration: It is important to have verify delay big to not break logic.  modbus:   - type: tcp     host: 192.168.222.222     port: 5000     name: "modbus1"     switches:       - name: "hhc_r8"         address: 16         write_type: coil         verify:           delay: 36       - name: "hhc_r7"         address: 17         write_type: coil         verify:           delay: 37       - name: "hhc_r6"   ...

HomeAssistant gadinan camera rest commands pan and tilt

 Add following to restcommand.yaml and include in config.yaml:   # rest_command: ptz_control_right : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=1&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_left : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=-1&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_stop : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=0&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_up : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=0&tilt=1" method : PUT headers : Cookie : "c...