aboutsummaryrefslogtreecommitdiff
path: root/src/CommandDialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommandDialog.cc')
-rw-r--r--src/CommandDialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc
index bef8a63..023c22f 100644
--- a/src/CommandDialog.cc
+++ b/src/CommandDialog.cc
@@ -51,7 +51,7 @@ void CommandDialog::exec(const std::string &text){
51 if (cmd.get()) 51 if (cmd.get())
52 cmd->execute(); 52 cmd->execute();
53 // post execute 53 // post execute
54 if (*m_postcommand != 0) 54 if (m_postcommand != 0)
55 m_postcommand->execute(); 55 m_postcommand->execute();
56} 56}
57 57