Browse Source

Added debug output

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
a3822c5aa8
  1. 3
      src/qmacapplication.cpp

3
src/qmacapplication.cpp

@ -28,12 +28,14 @@ @@ -28,12 +28,14 @@
* Contact : chris@qbittorrent.org
*/
#include <QEvent>
#include <QFileOpenEvent>
#include "qmacapplication.h"
QMacApplication::QMacApplication(QString appid, int &argc, char** argv) :
QtSingleApplication(appid, argc, argv)
{
qDebug("Constructing a QMacApplication to receive file open events");
}
bool QMacApplication::event(QEvent * ev) {
@ -41,6 +43,7 @@ bool QMacApplication::event(QEvent * ev) { @@ -41,6 +43,7 @@ bool QMacApplication::event(QEvent * ev) {
case QEvent::FileOpen:
{
QString path = static_cast<QFileOpenEvent *>(ev)->file();
qDebug("Received a mac file open event: %s", qPrintable(path));
emit newFileOpenMacEvent(path);
return true;
}

Loading…
Cancel
Save