Fix qcstring format warnings

Related to Bug 637
pull/2/head
Timothy Pearson 13 years ago
parent 540da17300
commit ce82c99453

@ -164,7 +164,11 @@ public:
QCString copy() const;
QCString &sprintf( const char *format, ... );
QCString &sprintf( const char *format, ... )
#if defined(Q_CC_GNU) && !defined(__INSURE__)
__attribute__ ((format (printf, 2, 3)))
#endif
;
int find( char c, int index=0, bool cs=TRUE ) const;
int find( const char *str, int index=0, bool cs=TRUE ) const;

Loading…
Cancel
Save