~ubuntu-branches/ubuntu/wily/qtdeclarative-opensource-src/wily-proposed

« back to all changes in this revision

Viewing changes to src/qml/debugger/qqmldebugservice.cpp

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Ricardo Salveti de Araujo, Timo Jyrinki
  • Date: 2014-06-19 02:39:21 UTC
  • mfrom: (0.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140619023921-yb2oasnuetz9b0fc
Tags: 5.3.0-3ubuntu4
[ Ricardo Salveti de Araujo ]
* debian/control:
  - Updating dependencies as we now also have libqt5quickwidgets5-gles
* libqt5quickwidgets5.symbols: updating to allow gles variant

[ Timo Jyrinki ]
* Update libqt5quickparticles5.symbols from build logs

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
{
319
319
}
320
320
 
 
321
void QQmlDebugService::engineAboutToBeAdded(QQmlEngine *engine)
 
322
{
 
323
    emit attachedToEngine(engine);
 
324
}
 
325
 
 
326
void QQmlDebugService::engineAboutToBeRemoved(QQmlEngine *engine)
 
327
{
 
328
    emit detachedFromEngine(engine);
 
329
}
 
330
 
 
331
void QQmlDebugService::engineAdded(QQmlEngine *)
 
332
{
 
333
}
 
334
 
 
335
void QQmlDebugService::engineRemoved(QQmlEngine *)
 
336
{
 
337
}
 
338
 
321
339
QQmlDebugStream::QQmlDebugStream()
322
340
    : QDataStream()
323
341
{