diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-03-01 02:44:23 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-03-01 02:44:23 -0500 |
| commit | dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33 (patch) | |
| tree | f3695a3ad53ee5b681ffe939e9078ea3aa3237ab | |
| parent | 588cfb243dabbf7aa9661c1abb2c3652d07d3cdb (diff) | |
| download | sigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.tar.gz sigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.tar.xz sigen-dd0b6d5de2aa968ce2525ca4bbb8faeca4d56d33.zip | |
Fix a connection
| -rw-r--r-- | sigmodr/tree/SigmodrTree.cpp | 2 |
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())); |
