From dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 1 Mar 2009 02:44:23 -0500 Subject: Fix a connection --- sigmodr/tree/SigmodrTree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); -- cgit