Andrew Talbot : winecfg: Write-strings warnings fix.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jul 10 07:12:12 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: f99d84b0c6472e87099d26c90525cfe9f82fcd0d
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=f99d84b0c6472e87099d26c90525cfe9f82fcd0d

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Fri Jul  7 19:42:27 2006 +0100

winecfg: Write-strings warnings fix.

---

 programs/winecfg/audio.c |   27 ++++++++++++++++++++-------
 1 files changed, 20 insertions(+), 7 deletions(-)

diff --git a/programs/winecfg/audio.c b/programs/winecfg/audio.c
index b68ab7f..ce3664e 100644
--- a/programs/winecfg/audio.c
+++ b/programs/winecfg/audio.c
@@ -207,6 +207,7 @@ static void initAudioDeviceTree(HWND hDl
     HIMAGELIST hImageList;
     HBITMAP hBitMap;
     HCURSOR old_cursor;
+    static TCHAR driver_typeT[] = {'S','o','u','n','d',' ','D','r','i','v','e','r','s',0};
 
     tree = GetDlgItem(hDlg, IDC_AUDIO_TREE);
 
@@ -227,7 +228,7 @@ static void initAudioDeviceTree(HWND hDl
     insert.hParent = TVI_ROOT;
     insert.hInsertAfter = TVI_LAST;
     insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-    insert.u.item.pszText = "Sound Drivers";
+    insert.u.item.pszText = driver_typeT;
     insert.u.item.cChildren = 1;
     root = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
 
@@ -306,9 +307,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_wod)
                     {
+                        TCHAR dev_typeT[] = {'W','a','v','e',' ','O','u','t',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "Wave Out Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
@@ -332,9 +335,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_wid)
                     {
+                        TCHAR dev_typeT[] = {'W','a','v','e',' ','I','n',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "Wave In Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
@@ -358,9 +363,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_mod)
                     {
+                        TCHAR dev_typeT[] = {'M','I','D','I',' ','O','u','t',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "MIDI Out Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
@@ -384,9 +391,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_mid)
                     {
+                        TCHAR dev_typeT[] = {'M','I','D','I',' ','I','n',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "MIDI In Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
@@ -410,9 +419,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_aux)
                     {
+                        TCHAR dev_typeT[] = {'A','u','x',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "Aux Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);
@@ -436,9 +447,11 @@ static void initAudioDeviceTree(HWND hDl
 
                     if (num_mxd)
                     {
+                        TCHAR dev_typeT[] = {'M','i','x','e','r',' ','D','e','v','i','c','e','s',0};
+
                         insert.hParent = driver[i];
                         insert.u.item.mask = TVIF_TEXT | TVIF_CHILDREN;
-                        insert.u.item.pszText = "Mixer Devices";
+                        insert.u.item.pszText = dev_typeT;
                         insert.u.item.cChildren = 1;
 
                         type = (HTREEITEM)SendDlgItemMessage(hDlg, IDC_AUDIO_TREE, TVM_INSERTITEM, 0, (LPARAM)&insert);




More information about the wine-cvs mailing list