##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QDesktopServices.cpp
38 lines | 1.2 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QDesktopServices.cpp
#include "PythonQtWrapper_QDesktopServices.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qobject.h>
#include <qurl.h>
QDesktopServices* PythonQtWrapper_QDesktopServices::new_QDesktopServices()
{
return new PythonQtShell_QDesktopServices(); }
bool PythonQtWrapper_QDesktopServices::static_QDesktopServices_openUrl(const QUrl& url)
{
return (QDesktopServices::openUrl(url));
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_unsetUrlHandler(const QString& scheme)
{
(QDesktopServices::unsetUrlHandler(scheme));
}
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_storageLocation(QDesktopServices::StandardLocation type)
{
return (QDesktopServices::storageLocation(type));
}
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_displayName(QDesktopServices::StandardLocation type)
{
return (QDesktopServices::displayName(type));
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_setUrlHandler(const QString& scheme, QObject* receiver, const char* method)
{
(QDesktopServices::setUrlHandler(scheme, receiver, method));
}