Changeset 179 for smplayer/vendor/current/src/main.cpp
- Timestamp:
- Aug 31, 2016, 5:19:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/main.cpp
r175 r179 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.