comparison src/name/blackcap/exifwasher/Menus.kt @ 5:dc1f4359659d

Got it compiling.
author David Barts <n5jrn@me.com>
date Thu, 09 Apr 2020 18:20:34 -0700
parents 19c381c536ec
children aafc9c127c7b
comparison
equal deleted inserted replaced
4:ba5dc14652da 5:dc1f4359659d
66 66
67 /** 67 /**
68 * Show an About dialog. 68 * Show an About dialog.
69 */ 69 */
70 fun showAboutDialog() { 70 fun showAboutDialog() {
71 JOptionPane.showMessageDialog(frame.v, 71 JOptionPane.showMessageDialog(Application.mainFrame,
72 "ExifWasher—Privacy for your photos.\n" 72 "ExifWasher—Privacy for your photos.\n"
73 + "© MMXX, David W. Barts", 73 + "© MMXX, David W. Barts",
74 "About ExifWasher", 74 "About ExifWasher",
75 JOptionPane.PLAIN_MESSAGE) 75 JOptionPane.PLAIN_MESSAGE)
76 } 76 }