Changeset 181 for smplayer/trunk/src/main.cpp
- Timestamp:
- Aug 31, 2016, 5:31:04 PM (9 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 179
- Property svn:mergeinfo changed
-
smplayer/trunk/src/main.cpp
r176 r181 22 22 #include <QDir> 23 23 24 int main( int argc, char ** argv ) 24 #ifdef HDPI_SUPPORT 25 #include "paths.h" 26 #include "hdpisupport.h" 27 #endif 28 29 int main( int argc, char ** argv ) 25 30 { 31 #ifdef HDPI_SUPPORT 32 HDPISupport * hdpi = new HDPISupport(Paths::configPath()); 33 #endif 34 26 35 MyApplication a( "smplayer", argc, argv ); 27 36 /* … … 84 93 delete smplayer; 85 94 95 #ifdef HDPI_SUPPORT 96 delete hdpi; 97 #endif 98 86 99 return r; 87 100 }
Note:
See TracChangeset
for help on using the changeset viewer.