mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
fix qDebug() can't print QSslError bug
This commit is contained in:
parent
81df49c3fe
commit
354bfc44b3
@ -3,7 +3,7 @@ CONFIG += ordered
|
||||
|
||||
SUBDIRS =
|
||||
SUBDIRS += src/qqt.pro
|
||||
#SUBDIRS += examples/framelesshelperwidget
|
||||
SUBDIRS += examples/framelesshelperwidget
|
||||
#SUBDIRS += examples/qqtframe
|
||||
#SUBDIRS += examples/qqtframe2
|
||||
#SUBDIRS += examples/animationframe
|
||||
|
@ -39,7 +39,7 @@ void QQtWebClient::proxyAuthenticationRequired(QNetworkProxy p, QAuthenticator*
|
||||
|
||||
void QQtWebClient::sslErrors(QNetworkReply* r, QList<QSslError> e)
|
||||
{
|
||||
pline() << r << e;
|
||||
pline() << r << e.size();
|
||||
}
|
||||
|
||||
void QQtWebClient::networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility a)
|
||||
|
@ -18,6 +18,11 @@ message (build $${TARGET} $${QKIT_} library)
|
||||
equals(QKIT_, macOS) {
|
||||
CONFIG += dll
|
||||
CONFIG += lib_bundle
|
||||
} else:equals(QKIT_, iOS) {
|
||||
#DEFINES -= QQT_LIBRARY
|
||||
CONFIG -= dll
|
||||
CONFIG -= lib_bundle
|
||||
CONFIG += staticlib
|
||||
}
|
||||
CONFIG += debug_and_release
|
||||
CONFIG += build_all
|
||||
|
@ -301,6 +301,9 @@ HEADERS += $$PWD/printsupport/qqtprinter.h
|
||||
equals(QKIT_, Android) {
|
||||
SOURCES -= $$PWD/printsupport/qqtprinter.cpp
|
||||
HEADERS -= $$PWD/printsupport/qqtprinter.h
|
||||
} else equals(QKIT_, iOS) {
|
||||
SOURCES -= $$PWD/printsupport/qqtprinter.cpp
|
||||
HEADERS -= $$PWD/printsupport/qqtprinter.h
|
||||
}
|
||||
|
||||
#sql
|
||||
|
Loading…
x
Reference in New Issue
Block a user