summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-01 02:44:23 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-03-01 02:44:23 -0500
commitdd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33 (patch)
treef3695a3ad53ee5b681ffe939e9078ea3aa3237ab
parent588cfb243dabbf7aa9661c1abb2c3652d07d3cdb (diff)
downloadsigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.tar.gz
sigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.tar.xz
sigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.zip
Fix a connection
-rw-r--r--sigmodr/tree/SigmodrTree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmodr/tree/SigmodrTree.cpp b/sigmodr/tree/SigmodrTree.cpp
index 9a7bbb7e..552fad0c 100644
--- a/sigmodr/tree/SigmodrTree.cpp
+++ b/sigmodr/tree/SigmodrTree.cpp
@@ -40,7 +40,7 @@ SigmodrTree::SigmodrTree(QWidget* parent) :
QTreeView(parent)
{
SigmodrTreeModel* model = new SigmodrTreeModel(this);
- connect(model, SIGNAL(dirty(const Game*, bool)), this, SLOT(setDirty(const Game*, bool)));
+ connect(model, SIGNAL(dirty(const Sigmod::Game*, bool)), this, SLOT(setDirty(const Sigmod::Game*, bool)));
header()->hide();
setModel(model);
setRootIndex(model->index(-1, 0, QModelIndex()));