Qt 4.8
Functions
qdesktopservices_qws.cpp File Reference
#include <qcoreapplication.h>
#include <qdir.h>

Go to the source code of this file.

Functions

static bool launchWebBrowser (const QUrl &url)
 
static bool openDocument (const QUrl &file)
 

Function Documentation

◆ launchWebBrowser()

static bool launchWebBrowser ( const QUrl url)
static

Definition at line 47 of file qdesktopservices_qws.cpp.

48 {
49  Q_UNUSED(url);
50  qWarning("QDesktopServices::launchWebBrowser not implemented");
51  return false;
52 }
Q_CORE_EXPORT void qWarning(const char *,...)
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...
Definition: qglobal.h:1729

◆ openDocument()

static bool openDocument ( const QUrl file)
static

Definition at line 54 of file qdesktopservices_qws.cpp.

55 {
56  Q_UNUSED(file);
57  qWarning("QDesktopServices::openDocument not implemented");
58  return false;
59 }
Q_CORE_EXPORT void qWarning(const char *,...)
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...
Definition: qglobal.h:1729