diff options
Diffstat (limited to 'src/modules/raweditor/RawEditorWindow.cpp')
| -rw-r--r-- | src/modules/raweditor/RawEditorWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/raweditor/RawEditorWindow.cpp b/src/modules/raweditor/RawEditorWindow.cpp index c9aedb643..0cfb8489c 100644 --- a/src/modules/raweditor/RawEditorWindow.cpp +++ b/src/modules/raweditor/RawEditorWindow.cpp @@ -54,7 +54,7 @@ RawTreeWidgetItem::RawTreeWidgetItem(QTreeWidget * par, int idx, bool bEnabled) { m_iIdx = idx; QString szName; - szName.sprintf("%03d", idx); + szName = QString::asprintf("%03d", idx); setText(0, szName); setEnabled(bEnabled); } |
