winecfg: Remove some superfluous casts.
authorMichael Stefaniuc <mstefani@redhat.de>
Thu, 4 Dec 2008 04:31:26 +0000 (05:31 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 4 Dec 2008 11:08:20 +0000 (12:08 +0100)
programs/winecfg/libraries.c
programs/winecfg/theme.c

index 92dd97087f574d459736312cd5e8094985e0bed4..6abe04dfd90a5549a9be0ca494cfa217ab94ca49 100644 (file)
@@ -495,7 +495,7 @@ static void on_add_click(HWND dialog)
 
     load_library_settings(dialog);
 
-    SendDlgItemMessage(dialog, IDC_DLLS_LIST, LB_SELECTSTRING, (WPARAM) 0, (LPARAM) buffer);
+    SendDlgItemMessage(dialog, IDC_DLLS_LIST, LB_SELECTSTRING, 0, (LPARAM) buffer);
 
     set_controls_from_selection(dialog);
 }
index 9b7e8579c4e76d4a4efca58cea45835346625464..d87aba071be8c907694d75e3dae0a72dab4f30ed 100644 (file)
@@ -302,7 +302,7 @@ static BOOL fill_theme_list (HWND comboTheme, HWND comboColor, HWND comboSize)
 
     for (i = 0; i < themeFilesCount; i++)
     {
-       ThemeFile* item = (ThemeFile*)DSA_GetItemPtr (themeFiles, i);
+        ThemeFile* item = DSA_GetItemPtr (themeFiles, i);
        SendMessageW (comboTheme, CB_ADDSTRING, 0, 
            (LPARAM)item->fancyName);
     }
@@ -316,7 +316,7 @@ static BOOL fill_theme_list (HWND comboTheme, HWND comboColor, HWND comboSize)
        BOOL found = FALSE;
        for (i = 0; i < themeFilesCount; i++)
        {
-           theme = (ThemeFile*)DSA_GetItemPtr (themeFiles, i);
+            theme = DSA_GetItemPtr (themeFiles, i);
            if (lstrcmpiW (theme->themeFileName, currentTheme) == 0)
            {
                found = TRUE;
@@ -332,8 +332,7 @@ static BOOL fill_theme_list (HWND comboTheme, HWND comboColor, HWND comboSize)
            myEnumThemeProc (NULL, currentTheme, currentTheme, 
                currentTheme, NULL, NULL);
            themeIndex = themeFilesCount;
-           theme = (ThemeFile*)DSA_GetItemPtr (themeFiles, 
-               themeFilesCount-1);
+            theme = DSA_GetItemPtr (themeFiles, themeFilesCount-1);
        }
        fill_color_size_combos (theme, comboColor, comboSize);
        select_color_and_size (theme, currentColor, comboColor,
@@ -364,8 +363,7 @@ static BOOL update_color_and_size (int themeIndex, HWND comboColor,
        WCHAR currentTheme[MAX_PATH];
        WCHAR currentColor[MAX_PATH];
        WCHAR currentSize[MAX_PATH];
-       ThemeFile* theme = 
-           (ThemeFile*)DSA_GetItemPtr (themeFiles, themeIndex - 1);
+       ThemeFile* theme = DSA_GetItemPtr (themeFiles, themeIndex - 1);
     
        fill_color_size_combos (theme, comboColor, comboSize);
       
@@ -399,8 +397,7 @@ static void do_apply_theme (int themeIndex, int colorIndex, int sizeIndex)
     }
     else
     {
-       ThemeFile* theme = 
-           (ThemeFile*)DSA_GetItemPtr (themeFiles, themeIndex-1);
+        ThemeFile* theme = DSA_GetItemPtr (themeFiles, themeIndex-1);
        const WCHAR* themeFileName = theme->themeFileName;
        const WCHAR* colorName = NULL;
        const WCHAR* sizeName = NULL;