Mac fixes

This commit is contained in:
Christophe Dumez 2010-06-09 22:16:37 +00:00
parent 2e382fa88c
commit d470059c56
2 changed files with 5 additions and 2 deletions

View file

@ -36,7 +36,6 @@ QMacApplication::QMacApplication(QString appid, int &argc, char** argv) :
{
}
bool QMacApplication::event(QEvent * event) {
switch (event->type()) {
case QEvent::FileOpen:
@ -46,7 +45,7 @@ bool QMacApplication::event(QEvent * event) {
return true;
}
default:
return QApplication::event(event);
return QApplication::QtSingleApplication(event);
}
}