ChangeLog: Warn users of winecfg about its incompleteness
Index: programs/winecfg/main.c =================================================================== RCS file: /home/wine/wine/programs/winecfg/main.c,v retrieving revision 1.2 diff -u -r1.2 main.c --- programs/winecfg/main.c 18 Jun 2003 03:30:40 -0000 1.2 +++ programs/winecfg/main.c 22 Aug 2003 16:12:45 -0000 @@ -266,6 +266,11 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrev, LPSTR szCmdLine, int nShow) { + + /* Until winecfg is fully functional, warn users that it is incomplete and doesn't do anything */ + MessageBox(NULL, "The winecfg tool is not yet complete, and does not actually alter your configuration. If you want to alter the way Wine works, look in the ~/.wine/config file for more information.", "", MB_OK | MB_ICONWARNING); + + /* * Load the configuration from registry */