- Timestamp:
- 2021-03-27T15:38:14+01:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java
r17488 r17676 96 96 } catch (ReflectiveOperationException | SecurityException | IllegalArgumentException ex) { 97 97 // We'll just ignore this for now. The user will still be able to close JOSM by closing all its windows. 98 Logging.warn("Failed to register with OSX: " + ex);98 Logging.warn("Failed to register with macOS: " + ex); 99 99 } 100 100 checkExpiredJava(callback); … … 158 158 Window.class, boolean.class).invoke(eawtFullScreenUtilities, window, Boolean.TRUE); 159 159 } catch (ReflectiveOperationException | SecurityException | IllegalArgumentException e) { 160 Logging.warn("Failed to register with OSX: " + e);160 Logging.warn("Failed to register with macOS: " + e); 161 161 } 162 162 } … … 171 171 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 172 172 if (Logging.isDebugEnabled()) { 173 Logging.debug(" OSXhandler: {0} - {1}", method.getName(), Arrays.toString(args));173 Logging.debug("macOS handler: {0} - {1}", method.getName(), Arrays.toString(args)); 174 174 } 175 175 switch (method.getName()) { … … 205 205 break; 206 206 default: 207 Logging.warn(" OSXunsupported method: "+method.getName());207 Logging.warn("macOS unsupported method: "+method.getName()); 208 208 } 209 209 return null; -
trunk/src/org/openstreetmap/josm/tools/Shortcut.java
r16913 r17676 537 537 int newmodifier = findNewOsxModifier(requestedGroup); 538 538 if (!findShortcut(requestedKey, newmodifier).isPresent()) { 539 Logging.info("Reassigning OSXshortcut '" + shortText + "' from Meta to Ctrl because of conflict with " + conflict);539 Logging.info("Reassigning macOS shortcut '" + shortText + "' from Meta to Ctrl because of conflict with " + conflict); 540 540 return reassignShortcut(shortText, longText, requestedKey, conflict, requestedGroup, requestedKey, newmodifier); 541 541 }
Note:
See TracChangeset
for help on using the changeset viewer.