diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-03-26 05:53:11 -0400 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-03-26 05:53:11 -0400 |
| commit | 26d642acf808844bf1f395694666394d12822f64 (patch) | |
| tree | 8c1a255127011035ecc7f5a28af9767e343ee1d1 /sigtools/PluginTreeModel.cpp | |
| parent | 1d09c9f3bba82ae2a918765f645c7829027b4ac1 (diff) | |
Fix inserted signal
Diffstat (limited to 'sigtools/PluginTreeModel.cpp')
| -rw-r--r-- | sigtools/PluginTreeModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigtools/PluginTreeModel.cpp b/sigtools/PluginTreeModel.cpp index ae6af390..03479a8a 100644 --- a/sigtools/PluginTreeModel.cpp +++ b/sigtools/PluginTreeModel.cpp @@ -58,7 +58,7 @@ PluginTreeModel::PluginTreeModel(const QStringList& types, PluginTree* tree) : data.m_description = plugin->description(name); data.m_icon = plugin->icon(name); } - beginInsertRows(QModelIndex(), m_entries.size(), 1); + beginInsertRows(QModelIndex(), m_entries.size(), m_entries.size()); m_entries.append(data); endInsertRows(); } |
