Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/4.7' into qt-master-from-4.7
Browse files Browse the repository at this point in the history
Conflicts:
	src/gui/text/qfontengine_mac.mm
	tests/auto/qdiriterator/tst_qdiriterator.cpp
  • Loading branch information
ogoffart committed Apr 7, 2011
2 parents 8031ead + a05f734 commit 7c8980e
Show file tree
Hide file tree
Showing 738 changed files with 49,394 additions and 2,475 deletions.
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3416,7 +3416,7 @@ if [ "$PLATFORM_QWS" = "yes" ] && [ "$CFG_OPENGL" = "auto" ]; then
fi

# mac
if [ "$PLATFORM_MAC" = "yes" ]; then
if [ "$PLATFORM_MAC" = "yes" ] && [ "$XPLATFORM_SYMBIAN" = "no" ]; then
if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then
CFG_OPENGL=desktop
fi
Expand Down Expand Up @@ -5725,8 +5725,8 @@ if [ "$PLATFORM_X11" = "yes" ]; then
fi
fi

# X11/MINGW OpenGL
if [ "$PLATFORM_X11" = "yes" -o "$XPLATFORM_MINGW" = "yes" ]; then
# X11/MINGW/SYMBIAN OpenGL
if [ "$PLATFORM_X11" = "yes" -o "$XPLATFORM_MINGW" = "yes" -o "$XPLATFORM_SYMBIAN" = "yes" ]; then
# auto-detect OpenGL support (es1 = OpenGL ES 1.x Common, es2 = OpenGL ES 2.x)
if [ "$CFG_GUI" = "no" ]; then
if [ "$CFG_OPENGL" = "auto" ]; then
Expand Down
Binary file modified configure.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion demos/browser/networkaccessmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void NetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &prox
void NetworkAccessManager::sslErrors(QNetworkReply *reply, const QList<QSslError> &error)
{
// check if SSL certificate has been trusted already
QString replyHost = reply->url().host() + ":" + reply->url().port();
QString replyHost = reply->url().host() + QString(":%1").arg(reply->url().port());
if(! sslTrustedHostList.contains(replyHost)) {
BrowserMainWindow *mainWindow = BrowserApplication::instance()->mainWindow();

Expand Down
11 changes: 9 additions & 2 deletions demos/demos.pro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ symbian: SUBDIRS = \
demos_shared \
demos_deform \
demos_pathstroke



wince*: SUBDIRS = \
demos_shared \
demos_deform \
Expand All @@ -39,7 +40,7 @@ wince*: SUBDIRS = \
demos_embeddeddialogs \
demos_undo \
demos_sub-attaq

contains(QT_CONFIG, opengl):!contains(QT_CONFIG, opengles1):!contains(QT_CONFIG, opengles2):{
SUBDIRS += demos_boxes
}
Expand Down Expand Up @@ -91,6 +92,12 @@ demos_qtdemo.subdir = qtdemo
demos_mediaplayer.subdir = qmediaplayer
demos_declarative.subdir = declarative

#mobile demos. Requires QtMobility sources. Not included in demo build
demos_guitartuner.subdir = mobile/guitartuner
demos_qcamera.subdir = mobile/qcamera
demos_qtbubblelevel.subdir = mobile/qtbubblelevel
demos_quickhit.subdir = mobile/quickhit

demos_browser.subdir = browser

demos_boxes.subdir = boxes
Expand Down
Loading

0 comments on commit 7c8980e

Please sign in to comment.