Changeset 416 for trunk/orca
- Timestamp:
- 06/18/07 15:17:51 (17 months ago)
- Location:
- trunk/orca/qt
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/qt/qorca.cpp
r410 r416 193 193 194 194 195 QOrcaApp::QOrcaApp( int argc, char** argv ) : QApplication( argc, argv ) 195 /* 196 Note that argc is a reference! If it is not, QApplication will 197 store the stack position of the local argc and crash when argc is used 198 after the constructor exits. 199 */ 200 QOrcaApp::QOrcaApp( int& argc, char** argv ) : QApplication( argc, argv ) 196 201 { 197 202 setQuitOnLastWindowClosed( false ); -
trunk/orca/qt/qorca.h
r410 r416 122 122 public: 123 123 124 QOrcaApp( int argc, char** argv );124 QOrcaApp( int& argc, char** argv ); 125 125 }; 126 126
