Skip to content

Commit

Permalink
Нулевая версия.
Browse files Browse the repository at this point in the history
  • Loading branch information
gil9red committed Feb 27, 2014
1 parent 2f73f8f commit ab17e4a
Show file tree
Hide file tree
Showing 8 changed files with 597 additions and 296 deletions.
12 changes: 7 additions & 5 deletions QRCodeGenerator.pro
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ TEMPLATE = app
DESTDIR = ../bin

SOURCES += main.cpp\
Widget.cpp \
QRCodeGenerator.cpp
QRCodeGenerator.cpp \
mainwindow.cpp

HEADERS += Widget.h \
QRCodeGenerator.h
HEADERS += \
QRCodeGenerator.h \
mainwindow.h

FORMS += Widget.ui
FORMS += \
mainwindow.ui
243 changes: 243 additions & 0 deletions QRCodeGenerator.pro.user

Large diffs are not rendered by default.

39 changes: 0 additions & 39 deletions Widget.h

This file was deleted.

188 changes: 0 additions & 188 deletions Widget.ui

This file was deleted.

6 changes: 3 additions & 3 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include "Widget.h"
#include "mainwindow.h"
#include <QApplication>
#include <QTextCodec>

/*
* Благодарность за код: https://github.com/abinghu/qt_rc
* Генератора кода взят отсюда: https://github.com/abinghu/qt_rc
*
*/

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

QApplication app(argc, argv);

Widget w;
MainWindow w;
w.show();

return app.exec();
Expand Down
Loading

0 comments on commit ab17e4a

Please sign in to comment.