summaryrefslogtreecommitdiff
path: root/core/ustring.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-03-22 19:06:13 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-03-22 19:06:13 -0300
commit0dcca688d26b85ac47291aac6a49bffb4b6ce851 (patch)
treee459a6320c0142bdfe3d35af38f1408f9dcd25ca /core/ustring.h
parent23e13ce3c209da13a7bbf771cf31588045ad432e (diff)
Revert "Camelcased script variables will now capitalize in the inspector."
Diffstat (limited to 'core/ustring.h')
-rw-r--r--core/ustring.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/ustring.h b/core/ustring.h
index f79e5ce306..d4b854ea76 100644
--- a/core/ustring.h
+++ b/core/ustring.h
@@ -149,7 +149,6 @@ public:
static double to_double(const CharType* p_str, const CharType **r_end=NULL);
static int64_t to_int(const CharType* p_str,int p_len=-1);
String capitalize() const;
- String camelcase_to_underscore() const;
int get_slice_count(String p_splitter) const;
String get_slice(String p_splitter,int p_slice) const;
@@ -226,6 +225,8 @@ public:
String(const char *p_str);
String(const CharType *p_str,int p_clip_to_len=-1);
String(const StrRange& p_range);
+
+
};