From b906e47dc788674edca09d0e3f2f33081667df20 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20F.=20Sch=C3=B6nitzer?= <michael@schoenitzer.de>
Date: Sat, 18 Jun 2011 11:49:43 +0200
Subject: [PATCH] fixed bug: cancel-button was not working in not-english josm-versions
---
terracer/src/terracer/HouseNumberInputHandler.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/terracer/src/terracer/HouseNumberInputHandler.java b/terracer/src/terracer/HouseNumberInputHandler.java
index 9aaa078..bd14357 100644
|
a
|
b
|
public class HouseNumberInputHandler extends JosmAction implements ActionListene
|
| 318 | 318 | |
| 319 | 319 | this.dialog.dispose(); |
| 320 | 320 | } |
| 321 | | } else if ("Cancel".equals(button.getActionCommand())) { |
| | 321 | } else if (tr("Cancel").equals(button.getActionCommand())) { |
| 322 | 322 | this.dialog.dispose(); |
| 323 | 323 | } |
| 324 | 324 | } else { |