Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp	(revision 79942)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp	(revision 79943)
@@ -535,5 +535,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     GetInstanceInfo(Bstr(strInstanceId.c_str()).raw(), instanceDescription, progress.asOutParam()),
+                     GetInstanceInfo(Bstr(strInstanceId).raw(), instanceDescription, progress.asOutParam()),
                      RTEXITCODE_FAILURE);
 
@@ -638,5 +638,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     StartInstance(Bstr(strInstanceId.c_str()).raw(), progress.asOutParam()),
+                     StartInstance(Bstr(strInstanceId).raw(), progress.asOutParam()),
                      RTEXITCODE_FAILURE);
     hrc = showProgress(progress);
@@ -697,5 +697,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     PauseInstance(Bstr(strInstanceId.c_str()).raw(), progress.asOutParam()),
+                     PauseInstance(Bstr(strInstanceId).raw(), progress.asOutParam()),
                      RTEXITCODE_FAILURE);
     hrc = showProgress(progress);
@@ -756,5 +756,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     TerminateInstance(Bstr(strInstanceId.c_str()).raw(), progress.asOutParam()),
+                     TerminateInstance(Bstr(strInstanceId).raw(), progress.asOutParam()),
                      RTEXITCODE_FAILURE);
     hrc = showProgress(progress);
@@ -1111,5 +1111,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     ImportImage(Bstr(strImageId.c_str()).raw(), pVirtualBox, ComSafeArrayAsInParam(parameters), progress.asOutParam()),
+                     ImportImage(Bstr(strImageId).raw(), pVirtualBox, ComSafeArrayAsInParam(parameters), progress.asOutParam()),
                      RTEXITCODE_FAILURE);
     hrc = showProgress(progress);
@@ -1175,5 +1175,5 @@
     RTPrintf("Reply is in the form \'image property\' = \'value\'\n");
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     GetImageInfo(Bstr(strImageId.c_str()).raw(),
+                     GetImageInfo(Bstr(strImageId).raw(),
                                   infoArray.asOutParam(),
                                   pProgress.asOutParam()),
@@ -1261,5 +1261,5 @@
     ComPtr<IProgress> progress;
     CHECK_ERROR2_RET(hrc, oCloudClient,
-                     DeleteImage(Bstr(strImageId.c_str()).raw(), progress.asOutParam()),
+                     DeleteImage(Bstr(strImageId).raw(), progress.asOutParam()),
                      RTEXITCODE_FAILURE);
     hrc = showProgress(progress);
