Changeset 165 for smplayer/trunk/src/myapplication.h
- Timestamp:
- May 16, 2014, 9:51:55 AM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 163
- Property svn:mergeinfo changed
-
smplayer/trunk/src/myapplication.h
r142 r165 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 20 20 #define MYAPPLICATION_H 21 21 22 #include <QtGlobal> 23 24 #ifdef Q_OS_WIN 25 #if QT_VERSION < 0x050000 26 #define USE_WINEVENTFILTER 27 #endif 28 #endif 29 22 30 #ifdef SINGLE_INSTANCE 23 31 #include "QtSingleApplication" … … 38 46 return qobject_cast<MyApplication*>(QApplication::instance()); 39 47 } 48 49 #ifdef USE_WINEVENTFILTER 50 virtual bool winEventFilter(MSG * msg, long * result); 51 #endif 40 52 }; 41 53 … … 53 65 // Nothing to do, let the application to close 54 66 } 67 68 #ifdef USE_WINEVENTFILTER 69 virtual bool winEventFilter(MSG * msg, long * result); 70 #endif 55 71 }; 56 72
Note:
See TracChangeset
for help on using the changeset viewer.