diff options
author | blafoo <github@blafoo.de> | 2012-01-01 22:22:11 +0100 |
---|---|---|
committer | blafoo <github@blafoo.de> | 2012-01-01 22:41:39 +0100 |
commit | 0c11c1769a1202a96c69d693832ebe3b911ce884 (patch) | |
tree | ed0c8cf5955e6c411821ad0f96f89877ecdf13ca /main/src/cgeo/geocaching/enumerations | |
parent | 2af7e51eefbc6169ed132244954a271ec4e11882 (diff) | |
download | cgeo-0c11c1769a1202a96c69d693832ebe3b911ce884.zip cgeo-0c11c1769a1202a96c69d693832ebe3b911ce884.tar.gz cgeo-0c11c1769a1202a96c69d693832ebe3b911ce884.tar.bz2 |
Reliable coords in searchByViewport for premium members / automatic
login in live map
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations')
-rw-r--r-- | main/src/cgeo/geocaching/enumerations/StatusCode.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/StatusCode.java b/main/src/cgeo/geocaching/enumerations/StatusCode.java index 8c29ff6..d49acb2 100644 --- a/main/src/cgeo/geocaching/enumerations/StatusCode.java +++ b/main/src/cgeo/geocaching/enumerations/StatusCode.java @@ -22,7 +22,8 @@ public enum StatusCode { MAINTENANCE(-10, R.string.err_maintenance), LOG_POST_ERROR(1000, R.string.err_log_post_failed), NO_LOG_TEXT(1001, R.string.warn_log_text_fill), - NO_DATA_FROM_SERVER(1002, R.string.err_log_failed_server); + NO_DATA_FROM_SERVER(1002, R.string.err_log_failed_server), + NOT_LOGGED_IN(-11, R.string.init_login_popup_failed); final private int error_code; final private int error_string; |