winecfg: add and update some comments

André Hentschel nerv at dawncrow.de
Wed Apr 1 12:05:08 CDT 2009


---
 programs/winecfg/main.c |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/programs/winecfg/main.c b/programs/winecfg/main.c
index e363bb7..4d93bf2 100644
--- a/programs/winecfg/main.c
+++ b/programs/winecfg/main.c
@@ -154,7 +154,7 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
     pg++;
     
     /*
-     * Fill out the (X11Drv) PROPSHEETPAGE data structure
+     * Fill out the (Graphics) PROPSHEETPAGE data structure
      * for the property sheet
      */
     psp[pg].dwSize = sizeof (PROPSHEETPAGEW);
@@ -167,6 +167,10 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
     psp[pg].lParam = 0;
     pg++;
 
+    /*
+     * Fill out the (Desktop Integration) PROPSHEETPAGE data structure
+     * for the property sheet
+     */
     psp[pg].dwSize = sizeof (PROPSHEETPAGEW);
     psp[pg].dwFlags = PSP_USETITLE;
     psp[pg].hInstance = hInstance;
@@ -177,6 +181,10 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
     psp[pg].lParam = 0;
     pg++;
 
+    /*
+     * Fill out the (Drives) PROPSHEETPAGE data structure
+     * for the property sheet
+     */
     psp[pg].dwSize = sizeof (PROPSHEETPAGEW);
     psp[pg].dwFlags = PSP_USETITLE;
     psp[pg].hInstance = hInstance;
@@ -187,6 +195,10 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
     psp[pg].lParam = 0;
     pg++;
 
+    /*
+     * Fill out the (Audio) PROPSHEETPAGE data structure
+     * for the property sheet
+     */
     psp[pg].dwSize = sizeof (PROPSHEETPAGEW);
     psp[pg].dwFlags = PSP_USETITLE;
     psp[pg].hInstance = hInstance;
@@ -198,7 +210,7 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
     pg++;
 
     /*
-     * Fill out the (General) PROPSHEETPAGE data structure
+     * Fill out the (About) PROPSHEETPAGE data structure
      * for the property sheet
      */
     psp[pg].dwSize = sizeof (PROPSHEETPAGEW);
-- 
1.6.2.1



More information about the wine-patches mailing list