QmlJsDebug: Remove unused code

This commit is contained in:
Kai Koehne
2011-03-21 13:14:26 +01:00
parent 634bcc88ad
commit bd2e4af905
2 changed files with 0 additions and 23 deletions

View File

@@ -114,28 +114,6 @@ void ClientProxy::clientStatusChanged(QDeclarativeDebugClient::Status status)
updateConnected();
}
void ClientProxy::disconnectFromServer()
{
delete m_engineClient;
m_engineClient = 0;
delete m_observerClient;
m_observerClient = 0;
delete m_engineQuery;
m_engineQuery = 0;
delete m_contextQuery;
m_contextQuery = 0;
qDeleteAll(m_objectTreeQuery);
m_objectTreeQuery.clear();
removeAllObjectWatches();
updateConnected();
}
void ClientProxy::refreshObjectTree()
{
if (!m_contextQuery) {

View File

@@ -133,7 +133,6 @@ public slots:
void setContextPathIndex(int contextIndex);
private slots:
void disconnectFromServer();
void connectToServer();
void clientStatusChanged(QDeclarativeDebugClient::Status status);