summaryrefslogtreecommitdiffstats
path: root/core/ustring.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-03-22 15:03:32 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-03-22 15:03:32 -0300
commit0302ea5b821939c68529195d223c35bc7f3ce7b1 (patch)
tree762bf92595b88d67c7ddade880942574eac37d7d /core/ustring.h
parent7436f0bb37b43d39ac7b7c72d7761e089b8bdc02 (diff)
parent748311ec42b6818f5481ad4ac4152f40ff1a8a6f (diff)
downloadredot-engine-0302ea5b821939c68529195d223c35bc7f3ce7b1.tar.gz
Merge pull request #1396 from Spooner/fix_sprintf_errors
Fix sprintf errors
Diffstat (limited to 'core/ustring.h')
-rw-r--r--core/ustring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.h b/core/ustring.h
index c7da26a695..f79e5ce306 100644
--- a/core/ustring.h
+++ b/core/ustring.h
@@ -130,7 +130,7 @@ public:
String pad_zeros(int p_digits) const;
String lpad(int min_length,const String& character=" ") const;
String rpad(int min_length,const String& character=" ") const;
- String sprintf(const Array& values) const;
+ String sprintf(const Array& values, bool* error) const;
static String num(double p_num,int p_decimals=-1);
static String num_scientific(double p_num);
static String num_real(double p_num);