Skip to content

Commit ab17e4a

Browse files
committed
Нулевая версия.
1 parent 2f73f8f commit ab17e4a

File tree

8 files changed

+597
-296
lines changed

8 files changed

+597
-296
lines changed

QRCodeGenerator.pro

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ TEMPLATE = app
88
DESTDIR = ../bin
99

1010
SOURCES += main.cpp\
11-
Widget.cpp \
12-
QRCodeGenerator.cpp
11+
QRCodeGenerator.cpp \
12+
mainwindow.cpp
1313

14-
HEADERS += Widget.h \
15-
QRCodeGenerator.h
14+
HEADERS += \
15+
QRCodeGenerator.h \
16+
mainwindow.h
1617

17-
FORMS += Widget.ui
18+
FORMS += \
19+
mainwindow.ui

QRCodeGenerator.pro.user

Lines changed: 243 additions & 0 deletions
Large diffs are not rendered by default.

Widget.h

Lines changed: 0 additions & 39 deletions
This file was deleted.

Widget.ui

Lines changed: 0 additions & 188 deletions
This file was deleted.

main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#include "Widget.h"
1+
#include "mainwindow.h"
22
#include <QApplication>
33
#include <QTextCodec>
44

55
/*
6-
* Благодарность за код: https://github.com/abinghu/qt_rc
6+
* Генератора кода взят отсюда: https://github.com/abinghu/qt_rc
77
*
88
*/
99

@@ -13,7 +13,7 @@ int main(int argc, char *argv[])
1313

1414
QApplication app(argc, argv);
1515

16-
Widget w;
16+
MainWindow w;
1717
w.show();
1818

1919
return app.exec();

0 commit comments

Comments
 (0)