[Title] Add (GMT) to about dialog
authorsyeon.hwang <syeon.hwang@samsung.com>
Mon, 19 Mar 2012 09:38:24 +0000 (18:38 +0900)
committersyeon.hwang <syeon.hwang@samsung.com>
Mon, 19 Mar 2012 09:38:24 +0000 (18:38 +0900)
[Type]
[Module] Emulator/
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/skin/client/src/org/tizen/emulator/skin/dialog/AboutDialog.java

index 6b6d376..81da445 100644 (file)
@@ -24,7 +24,7 @@ public class AboutDialog {
 
        private String makeMessage() {
                String version = "Version : " + properties.getProperty("version");
-               String buildTime = "Build time : " + properties.getProperty("build_time");
+               String buildTime = "Build time : " + properties.getProperty("build_time") + " (GMT)";
                String gitCommit = "Git : " + properties.getProperty("build_git_commit");
                
                return version + "\n" + buildTime + "\n" + gitCommit;