summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx/qqnxservices.cpp
blob: 379bb635076ec2b460269ec618c5dc1b97a392be (plain)
12345678910111213141516171819202122232425262728293031323334
// Copyright (C) 2011 - 2012 Research In Motion// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only#include"qqnxservices.h"#include"qqnxabstractnavigator.h" QT_BEGIN_NAMESPACE QQnxServices::QQnxServices(QQnxAbstractNavigator *navigator):m_navigator(navigator){}QQnxServices::~QQnxServices(){}boolQQnxServices::openUrl(const QUrl &url){returnnavigatorInvoke(url);}boolQQnxServices::openDocument(const QUrl &url){returnnavigatorInvoke(url);}boolQQnxServices::navigatorInvoke(const QUrl &url){return m_navigator->invokeUrl(url);} QT_END_NAMESPACE 
close