summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2008-04-03 12:53:00 +0000
committerDavid Athay <ko2fan@gmail.com>2008-04-03 12:53:00 +0000
commit3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6 (patch)
tree986fcffb9287d837b7c9b68f31d7480377b8fc99 /src/game.cpp
parent81bc81c04b5792f6bc71d886d49ce412ff35951b (diff)
downloadmana-client-3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6.tar.gz
mana-client-3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6.tar.bz2
mana-client-3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6.tar.xz
mana-client-3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6.zip
Tweaked disconnect dialog to fix crash bug id=250
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 553f80c3..0d8cfa6c 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -140,6 +140,7 @@ namespace {
done = true;
}
exitConfirm = NULL;
+ disconnectedDialog = NULL;
}
} exitListener;
}
@@ -428,9 +429,8 @@ void Game::logic()
OkDialog("Network Error",
"The connection to the server was lost, the program will now quit");
disconnectedDialog->addActionListener(&exitListener);
+ disconnectedDialog->requestMoveToTop();
}
-
- disconnectedDialog->requestMoveToTop();
}
}
}