diff options
author | Damian Minkov <damencho@jitsi.org> | 2011-03-22 12:45:56 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2011-03-22 12:45:56 +0000 |
commit | a57114338e350f8fb91779d47fc8e22cc3c6a282 (patch) | |
tree | 74c64c1b02874931d70b6240f64e03f438610086 /src/net/java/sip/communicator/launcher/SIPCommunicator.java | |
parent | 2de3a94af824ec6ec39b4953d6973f62070de3a9 (diff) | |
download | jitsi-a57114338e350f8fb91779d47fc8e22cc3c6a282.zip jitsi-a57114338e350f8fb91779d47fc8e22cc3c6a282.tar.gz jitsi-a57114338e350f8fb91779d47fc8e22cc3c6a282.tar.bz2 |
Change default dir name if none is forced (when running from source).
Diffstat (limited to 'src/net/java/sip/communicator/launcher/SIPCommunicator.java')
-rw-r--r-- | src/net/java/sip/communicator/launcher/SIPCommunicator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/launcher/SIPCommunicator.java b/src/net/java/sip/communicator/launcher/SIPCommunicator.java index 0d77280..1cb5611 100644 --- a/src/net/java/sip/communicator/launcher/SIPCommunicator.java +++ b/src/net/java/sip/communicator/launcher/SIPCommunicator.java @@ -186,7 +186,7 @@ public class SIPCommunicator + "Library" + File.separator + "Application Support"; if (name == null) - name = "SIP Communicator"; + name = "Jitsi"; } else if (osName.startsWith("Windows")) { @@ -199,7 +199,7 @@ public class SIPCommunicator if (location == null) location = System.getenv("APPDATA"); if (name == null) - name = "SIP Communicator"; + name = "Jitsi"; } /* If there're no OS specifics, use the defaults. */ |