57585960616263
public FindAndReplaceDialog( FindAndReplaceable target ) { super( "Find / Replace" ); putValue( Action.ACCELERATOR_KEY, UISupport.getKeyStroke( "F3" ) ); this.target = new ProxyFindAndReplacable( target ); }
65666768697071
if (UISupport.isMac()) { putValue(Action.ACCELERATOR_KEY, UISupport.getKeyStroke("meta F")); } else { putValue(Action.ACCELERATOR_KEY, UISupport.getKeyStroke("control F")); } this.target = new ProxyFindAndReplacable(target); }