forked from qt-creator/qt-creator
Debugger: Start disentangling WatchHandler::insertData
Rename the list overload. Make the single item overload use the direct path to insertItem, hook the column resize requests to the showing/hiding of the watchers pane. Change-Id: I0a1940c8e1919341a815e6bccbcf55d989d663da Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -236,8 +236,8 @@ public:
|
||||
void updateWatchersWindow();
|
||||
void appendFormatRequests(DebuggerCommand *cmd);
|
||||
|
||||
void insertData(const WatchData &data); // Convenience.
|
||||
void insertData(const QList<WatchData> &list);
|
||||
void insertData(const WatchData &data); // DEPRECATED
|
||||
void insertDataList(const QList<WatchData> &list); // DEPRECATED
|
||||
void insertItem(WatchItem *item); // Takes ownership.
|
||||
void removeData(const QByteArray &iname);
|
||||
void removeChildren(const QByteArray &iname);
|
||||
|
||||
Reference in New Issue
Block a user