From 2023efab9f3ca5c628d3a3e3649ad90e4a55d91b Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 2 Mar 2011 14:49:19 +0100 Subject: [PATCH] bineditor: fix recently introduced regression in setSize --- src/plugins/bineditor/bineditorplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp index 2d785e6d189..59fe6d3aecf 100644 --- a/src/plugins/bineditor/bineditorplugin.cpp +++ b/src/plugins/bineditor/bineditorplugin.cpp @@ -224,7 +224,7 @@ public: if (offset < static_cast(file.size()) && file.open(QIODevice::ReadOnly)) { m_fileName = fileName; - m_editor->setSizes(offset, file.size(), true); + m_editor->setSizes(offset, file.size()); m_editor->editor()->setDisplayName(QFileInfo(fileName).fileName()); file.close(); return true;