51a956366f
- Edited gettingstartedqt.qdoc - update .pro files - replaced snippet statements by \quotefromfile - removed second version of notepad.h and notepad.cpp that were made only for quoting snippets (\quotefromfile reads from the program code) - show current filename in header of window - added checking routine on filename in Save method Task-number: QTBUG-63984 Change-Id: I5298d761763a4dfeb705a1d9b77354be853ada88 Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
21 lines
266 B
Prolog
21 lines
266 B
Prolog
TEMPLATE = app
|
|
TARGET = notepad
|
|
|
|
QT += printsupport
|
|
|
|
SOURCES += \
|
|
main.cpp\
|
|
notepad.cpp
|
|
|
|
HEADERS += notepad.h
|
|
|
|
FORMS += notepad.ui
|
|
|
|
RESOURCES += \
|
|
notepad.qrc
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/tutorials/notepad
|
|
INSTALLS += target
|
|
|