diff options
author | Markku Luukkainen <markku.luukkainen@digia.com> | 2009-06-10 12:39:47 (GMT) |
---|---|---|
committer | Markku Luukkainen <markku.luukkainen@digia.com> | 2009-06-10 12:39:47 (GMT) |
commit | c24d4cb9eca0b06f411bc99be3d232ff1ee27516 (patch) | |
tree | 26cec0f68c1725a1e239732d0f7abbae2a62cf16 /src | |
parent | ea953378e71afaa4b6eb7c95bbe2e507b2ab6a7c (diff) | |
download | Qt-c24d4cb9eca0b06f411bc99be3d232ff1ee27516.zip Qt-c24d4cb9eca0b06f411bc99be3d232ff1ee27516.tar.gz Qt-c24d4cb9eca0b06f411bc99be3d232ff1ee27516.tar.bz2 |
Changed to use proper conversion from qstring to hbuf
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qwidget_s60.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qwidget_s60.cpp b/src/gui/kernel/qwidget_s60.cpp index eb3180f..bc69d6d 100644 --- a/src/gui/kernel/qwidget_s60.cpp +++ b/src/gui/kernel/qwidget_s60.cpp @@ -95,7 +95,7 @@ void QWidgetPrivate::setSoftKeys_sys(const QList<QAction*> &softkeys) const QAction* softKeyAction = softkeys.at(index); if (softKeyAction->softKeyRole() != QAction::ContextMenuSoftKey) { - HBufC* text = qt_QString2HBufCNewL(softKeyAction->text()); + HBufC* text = qt_QString2HBufC(softKeyAction->text()); CleanupStack::PushL(text); if (softKeyAction->softKeyRole() == QAction::MenuSoftKey) { nativeContainer->SetCommandL(placeInScreen, EAknSoftkeyOptions, *text); |