ddb191e47a
This patch contains: - some cosmetic changes to make example look more like modern C++; - UI initialization code and SSL signals handling were split into separate member-functions; - useless checks 'if (socket)' were deleted; - widget's minimum size is now fixed + font size in 'CertInfo' dialog increased to make it readable. Change-Id: I7aadb78896832a989494d280d6da0635045f948c Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
18 lines
426 B
Prolog
18 lines
426 B
Prolog
requires(qtHaveModule(network))
|
|
|
|
HEADERS += certificateinfo.h \
|
|
sslclient.h
|
|
SOURCES += certificateinfo.cpp \
|
|
main.cpp \
|
|
sslclient.cpp
|
|
RESOURCES += securesocketclient.qrc
|
|
FORMS += certificateinfo.ui \
|
|
sslclient.ui \
|
|
sslerrors.ui
|
|
QT += network widgets
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/network/securesocketclient
|
|
INSTALLS += target
|
|
|