summaryrefslogtreecommitdiffstats
path: root/languages/java/kdevdeepcopy.h
blob: 8e7d8fbe76ffd9607251e15ece93e137d593cb57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef KDEVDEEPCOPY_H
#define KDEVDEEPCOPY_H

#include <qstring.h>

inline QString deepCopy( const QString& s )
{
   QCString str = s.utf8();
   return QString::fromUtf8( str, str.length() );
}

#endif