~ubuntu-branches/ubuntu/wily/qtconnectivity-opensource-src/wily

« back to all changes in this revision

Viewing changes to examples/bluetooth/scanner/qmlscanner.cpp

  • Committer: Package Import Robot
  • Author(s): Lisandro Damián Nicanor Pérez Meyer, Timo Jyrinki
  • Date: 2014-02-23 00:01:49 UTC
  • mfrom: (0.1.3 experimental) (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140223000149-ht3k3x21dr5n5dol
Tags: 5.2.1-1
[ Timo Jyrinki ]
* New upstream release
* Move mkspecs to the new location
* Make private headers cleaning non version specific
* Add examples package
* Add dependencies to build against the 5.2.1 versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#include <QtGui/QGuiApplication>
42
42
#include <QtQuick/QQuickView>
43
43
#include <QtQml/QQmlEngine>
 
44
#include <QtCore/QLoggingCategory>
44
45
 
45
46
int main(int argc, char *argv[])
46
47
{
 
48
    //QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
47
49
    QGuiApplication application(argc, argv);
48
50
    const QString mainQmlApp = QLatin1String("qrc:/scanner.qml");
49
51
    QQuickView view;