forked from qt-creator/qt-creator
Debugger: Compile with QT_NO_CAST_FROM_ASCII.
(except gdbmi.cpp, name_demangler.cpp). Remove some unneeded conversions, change some maps to take QByteArray keys. Change-Id: I010f1251998a441fe5c8c87901b1e0c277c0391c Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -189,9 +189,9 @@ void StackWindow::copyContentsToClipboard()
|
||||
for (int j = 0; j != m; ++j) {
|
||||
QModelIndex index = model()->index(i, j);
|
||||
str += model()->data(index).toString();
|
||||
str += '\t';
|
||||
str += QLatin1Char('\t');
|
||||
}
|
||||
str += '\n';
|
||||
str += QLatin1Char('\n');
|
||||
}
|
||||
QClipboard *clipboard = QApplication::clipboard();
|
||||
# ifdef Q_WS_X11
|
||||
|
||||
Reference in New Issue
Block a user