┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Hartmetz <[email protected]>2010-10-10 16:13:25 +0000
committerAndreas Hartmetz <[email protected]>2010-10-10 16:13:25 +0000
commitc40a3a1ee6732a4aebba7128a25cb89f2da2fcbc (patch)
tree619f1fc9c31e9e9cdab608591e5320f8f750f6e2
parent717a665c4e6c0c9455ed46163216e7525f36ff87 (diff)
compile in debug mode (asserts enabled)
svn path=/trunk/KDE/kdebase/apps/; revision=1184511
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index e3f3a4d10..0913503d2 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -919,7 +919,7 @@ void DolphinMainWindow::compareFiles()
case 0: {
Q_ASSERT(m_viewTab[m_tabIndex].secondaryView != 0);
items = m_viewTab[m_tabIndex].secondaryView->view()->selectedItems();
- Q_ASSERT(urls.count() == 2);
+ Q_ASSERT(items.count() == 2);
urlA = items[0].url();
urlB = items[1].url();
break;