misc: remove references to wineprefixcreate (try 2)

Austin English austinenglish at gmail.com
Mon Jul 19 18:38:04 CDT 2010


This time, not referencing wineboot.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/dinput8/dinput8_main.c b/dlls/dinput8/dinput8_main.c
index 87dd07b..9d426fb 100644
--- a/dlls/dinput8/dinput8_main.c
+++ b/dlls/dinput8/dinput8_main.c
@@ -66,7 +66,7 @@ HRESULT WINAPI DECLSPEC_HOTPATCH DirectInput8Create(HINSTANCE hinst, DWORD dwVer
     
     hr = CoCreateInstance( &CLSID_DirectInput8, punkOuter, CLSCTX_INPROC_SERVER, riid, ppDI);
     if(FAILED(hr)) {
-        ERR("CoCreateInstance failed with hr = %d; Try running wineprefixcreate to fix it.\n", hr);
+        ERR("CoCreateInstance failed with hr = %d\n", hr);
         return DIERR_INVALIDPARAM;
     }
 
diff --git a/dlls/hlink/tests/hlink.c b/dlls/hlink/tests/hlink.c
index cf031f5..3db2e81 100644
--- a/dlls/hlink/tests/hlink.c
+++ b/dlls/hlink/tests/hlink.c
@@ -439,7 +439,7 @@ static void test_persist(void)
                                0, NULL, &IID_IHlink, (LPVOID*) &lnk);
     ok(hr == S_OK, "IHlinkCreateFromString failed with error 0x%08x\n", hr);
     if (!lnk) {
-        skip("Can't create lnk, skipping test_persist.  Was wineprefixcreate run properly?\n");
+        skip("Can't create lnk, skipping test_persist.\n");
         return;
     }
     test_persist_save_data("url only", lnk,
diff --git a/programs/winecfg/drivedetect.c b/programs/winecfg/drivedetect.c
index 75bce53..b20b97c 100644
--- a/programs/winecfg/drivedetect.c
+++ b/programs/winecfg/drivedetect.c
@@ -204,7 +204,7 @@ static void report_error(int code)
 
         case NO_DRIVE_C:
             if (gui_mode)
-                MessageBox(NULL, "No virtual drive C mapped\n\nTry running wineprefixcreate", "", MB_OK | MB_ICONEXCLAMATION);
+                MessageBox(NULL, "No virtual drive C mapped!\n", "", MB_OK | MB_ICONEXCLAMATION);
             else
                 fprintf(stderr, "winecfg: no drive_c directory\n");
 


More information about the wine-patches mailing list