forked from External/mage
big client update - moved Session to Mage.Common project, this will allow other clients to reuse connection logic
This commit is contained in:
parent
b9f4f7abf4
commit
8b1c463d35
80 changed files with 417 additions and 610 deletions
|
|
@ -35,6 +35,7 @@
|
|||
package mage.client.dialog;
|
||||
|
||||
import mage.client.MageFrame;
|
||||
import mage.utils.MageVersion;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -48,8 +49,8 @@ public class AboutDialog extends MageDialog {
|
|||
this.modal = false;
|
||||
}
|
||||
|
||||
public void showDialog() {
|
||||
this.lblVersion.setText(MageFrame.getVersion().toString());
|
||||
public void showDialog(MageVersion version) {
|
||||
this.lblVersion.setText(version.toString());
|
||||
this.setLocation(100, 100);
|
||||
this.setVisible(true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue