Added 'export all card images' functionality

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@232 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-03-23 18:37:49 +00:00
parent 851799d1b6
commit 0f8f8a3334
13 changed files with 236 additions and 25 deletions
+2 -2
View File
@@ -94,7 +94,7 @@ void TextBufferDC::drawToDevice(DC& dc, int x, int y) {
void print_preview(Window* parent, const SetP& set) {
// Let the user choose cards
CardSelectWindow wnd(parent, set, _LABEL_("select cards print"));
CardSelectWindow wnd(parent, set, _LABEL_("select cards print"), _TITLE_("select cards"));
if (wnd.ShowModal() != wxID_OK) {
return; // cancel
}
@@ -116,7 +116,7 @@ void print_preview(Window* parent, const SetP& set) {
void print_set(Window* parent, const SetP& set) {
// Let the user choose cards
CardSelectWindow wnd(parent, set, _LABEL_("select cards print"));
CardSelectWindow wnd(parent, set, _LABEL_("select cards print"), _TITLE_("select cards"));
if (wnd.ShowModal() != wxID_OK) {
return; // cancel
}