By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 637
Collapse All | Expand All

(-)src/tools/qcstring.h (-1 / +5 lines)
Lines 161-167 public: Link Here
161
161
162
    QCString	copy()	const;
162
    QCString	copy()	const;
163
163
164
    QCString    &sprintf( const char *format, ... );
164
    QCString    &sprintf( const char *format, ... )
165
#if defined(Q_CC_GNU) && !defined(__INSURE__)
166
    __attribute__ ((format (printf, 2, 3)))
167
#endif
168
        ;
165
169
166
    int		find( char c, int index=0, bool cs=TRUE ) const;
170
    int		find( char c, int index=0, bool cs=TRUE ) const;
167
    int		find( const char *str, int index=0, bool cs=TRUE ) const;
171
    int		find( const char *str, int index=0, bool cs=TRUE ) const;

Return to bug 637