- Bind also 9th slot
- Set svn:eol-style to native
- Console hides on ` key press in russian locale
- Fix construction tool number not decreasing after use
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}