summaryrefslogtreecommitdiff
path: root/examples/webkitwidgets/browser/history.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-07-03 13:52:02 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-03 15:55:04 +0200
commit1b233eff36dd185d32a1e72a2ba0ef825b1f6ef7 (patch)
tree4317b7622529cdc02e3e002ad2562338cd43fd43 /examples/webkitwidgets/browser/history.cpp
parenta4db690e3d09d2341b101557fa2875423db192d2 (diff)
downloadqtwebkit-examples-1b233eff36dd185d32a1e72a2ba0ef825b1f6ef7.tar.gz
Silence compiler warnings in browser example.
settings.cpp(138) : warning C4189: 'jar' : local variable is initialized but not referenced settings.cpp(240) : warning C4189: 'jar' : local variable is initialized but not referenced searchlineedit.cpp: In member function 'virtual void ClearButton::paintEvent(QPaintEvent*)': searchlineedit.cpp:68:12: warning: variable 'color' set but not used [-Wunused-but-set-variable] networkaccessmanager.cpp: In member function 'void NetworkAccessManager::requestFinished(QNetworkReply*)': networkaccessmanager.cpp:115:12: warning: unused variable 'pctCached' [-Wunused-variable] networkaccessmanager.cpp:116:12: warning: unused variable 'pctPipelined' [-Wunused-variable] networkaccessmanager.cpp:117:12: warning: unused variable 'pctSecure' [-Wunused-variable] networkaccessmanager.cpp:118:12: warning: unused variable 'pctDownloadBuffer' [-Wunused-variable] history.cpp: In member function 'virtual int HistoryMenuModel::rowCount(const QModelIndex&) const': history.cpp:516:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] history.cpp: In member function 'virtual QModelIndex HistoryMenuModel::mapToSource(const QModelIndex&) const': history.cpp:541:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] Change-Id: I76ba8ff28509f39c653e9b5ba707e380393dff0d Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'examples/webkitwidgets/browser/history.cpp')
-rw-r--r--examples/webkitwidgets/browser/history.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/webkitwidgets/browser/history.cpp b/examples/webkitwidgets/browser/history.cpp
index d241994..761d3f5 100644
--- a/examples/webkitwidgets/browser/history.cpp
+++ b/examples/webkitwidgets/browser/history.cpp
@@ -513,7 +513,7 @@ int HistoryMenuModel::rowCount(const QModelIndex &parent) const
return bumpedItems + folders;
}
- if (parent.internalId() == -1) {
+ if (parent.internalId() == quintptr(-1)) {
if (parent.row() < bumpedRows())
return 0;
}
@@ -538,7 +538,7 @@ QModelIndex HistoryMenuModel::mapToSource(const QModelIndex &proxyIndex) const
if (!proxyIndex.isValid())
return QModelIndex();
- if (proxyIndex.internalId() == -1) {
+ if (proxyIndex.internalId() == quintptr(-1)) {
int bumpedItems = bumpedRows();
if (proxyIndex.row() < bumpedItems)
return m_treeModel->index(proxyIndex.row(), proxyIndex.column(), m_treeModel->index(0, 0));
@@ -559,7 +559,7 @@ QModelIndex HistoryMenuModel::index(int row, int column, const QModelIndex &pare
|| parent.column() > 0)
return QModelIndex();
if (!parent.isValid())
- return createIndex(row, column, -1);
+ return createIndex(row, column, quintptr(-1));
QModelIndex treeIndexParent = mapToSource(parent);