blob: c4f889c14721887b42b6557abd97e474e640f521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TDEVDEEPCOPY_H
#define TDEVDEEPCOPY_H
#include <tqstring.h>
inline TQString deepCopy( const TQString& s )
{
TQCString str = s.utf8();
return TQString::fromUtf8( str, str.length() );
}
#endif
|