Skip to content

Commit

Permalink
汎用スタンプエディタ修正、ログインダイアログをJFrameに
Browse files Browse the repository at this point in the history
  • Loading branch information
MasudaNaika committed Jun 22, 2018
1 parent 88205a2 commit 0e03f7a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package open.dolphin.impl.login;

import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.WindowAdapter;
Expand Down Expand Up @@ -33,7 +32,7 @@
*/
public abstract class AbstractLoginDialog implements ILoginDialog {

protected JDialog dialog;
protected JFrame dialog;
protected BlockGlass blockGlass;

// 認証制御用
Expand Down Expand Up @@ -141,7 +140,8 @@ public void actionPerformed(ActionEvent ae) {

String title = ClientContext.getString("loginDialog.title");
String windowTitle = ClientContext.getFrameTitle(title);
dialog = new JDialog((Frame)null, windowTitle, true);
dialog = new JFrame(windowTitle);
dialog.setResizable(false);
dialog.setTitle(windowTitle);
dialog.getRootPane().setDefaultButton(getLoginButton());
blockGlass = new BlockGlass();
Expand Down
2 changes: 1 addition & 1 deletion client/src/main/java/open/dolphin/order/ClaimResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ protected Object[][] getContents() {
{"SHIN_LABO_TEST", "^6"},
{"SHIN_RADIOLOGY_ORDER", "^7"},
{"SHIN_OTHER_ORDER", "^8"},
{"SHIN_GENERAL_ORDER", "\\\\d"},
{"SHIN_GENERAL_ORDER", "\\d{3}"},
// エディタに表示する名前
{"NAME_BASE_CHARGE", "Base Fee"},
{"NAME_INSTRACTION_CHARGE", "Instraction"}, // 指導・在宅
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ protected Object[][] getContents() {
{"SHIN_LABO_TEST", "^6"},
{"SHIN_RADIOLOGY_ORDER", "^7"},
{"SHIN_OTHER_ORDER", "^8"},
{"SHIN_GENERAL_ORDER", "\\\\d"},
{"SHIN_GENERAL_ORDER", "\\d{3}"},
// エディタに表示する名前
{"NAME_BASE_CHARGE", "診断料"},
{"NAME_INSTRACTION_CHARGE", "管理料"}, // 指導・在宅
Expand Down

0 comments on commit 0e03f7a

Please sign in to comment.