str.h

changeset 116
4fde8fdf258a
parent 113
bbaa40226ec9
child 135
c243df39913e
--- a/str.h	Tue Apr 16 20:32:42 2013 +0300
+++ b/str.h	Wed Apr 17 14:09:38 2013 +0300
@@ -54,19 +54,6 @@
 	str (QString c);
 	~str ();
 	
-	static str mkfmt (const char* fmt, ...) {
-		va_list va;
-		char* buf;
-		
-		va_start (va, fmt);
-		buf = vdynformat (fmt, va, 256);
-		va_end (va);
-		
-		str val = buf;
-		delete[] buf;
-		return val;
-	}
-	
 	// ======================================================================
 	// METHODS
 	
@@ -281,4 +268,6 @@
 	}
 };
 
+str format (const char* fmt, ...);
+
 #endif // __STR_H__

mercurial