summaryrefslogtreecommitdiff
path: root/src/VBox/Main/src-all/VirtualBoxBase.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-05-31 09:24:14 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-05-31 09:24:14 +0000
commit176fe4d85955bdcb95349e240e54707888c89fd0 (patch)
tree26de2213241539a657134fd024e51d283b9b4841 /src/VBox/Main/src-all/VirtualBoxBase.cpp
parent5fa0197cbb10e9801023aef668369ef3751e8f18 (diff)
downloadVirtualBox-svn-176fe4d85955bdcb95349e240e54707888c89fd0.tar.gz
Main/VirtualBoxBase: Need to use Utf8StrFmt here
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@61326 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/src-all/VirtualBoxBase.cpp')
-rw-r--r--src/VBox/Main/src-all/VirtualBoxBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/Main/src-all/VirtualBoxBase.cpp b/src/VBox/Main/src-all/VirtualBoxBase.cpp
index dc8d937f1dc..5d3d2085507 100644
--- a/src/VBox/Main/src-all/VirtualBoxBase.cpp
+++ b/src/VBox/Main/src-all/VirtualBoxBase.cpp
@@ -621,7 +621,7 @@ HRESULT VirtualBoxBase::setErrorVrc(int vrc)
return setErrorInternal(Global::vboxStatusCodeToCOM(vrc),
this->getClassIID(),
this->getComponentName(),
- Utf8Str("%Rrc", vrc),
+ Utf8StrFmt("%Rrc", vrc),
false /* aWarning */,
true /* aLogIt */,
vrc /* aResultDetail */);
@@ -669,7 +669,7 @@ HRESULT VirtualBoxBase::setErrorBoth(HRESULT hrc, int vrc)
return setErrorInternal(hrc,
this->getClassIID(),
this->getComponentName(),
- Utf8Str("%Rrc", vrc),
+ Utf8StrFmt("%Rrc", vrc),
false /* aWarning */,
true /* aLogIt */,
vrc /* aResultDetail */);