mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-14 20:22:21 +00:00
dtcreate: Resolve uninitialized warnings
This commit is contained in:
parent
1227dabec4
commit
85684c337a
3 changed files with 3 additions and 3 deletions
|
@ -255,7 +255,7 @@ static Widget _Uxbuild_AddFiletype(void)
|
|||
int ntotalbuttons = 4;
|
||||
int nbutton = 0;
|
||||
Widget AF_ScrolledWindow;
|
||||
Widget AF_BigForm;
|
||||
Widget AF_BigForm = NULL;
|
||||
XtArgVal /* Dimension */ dim1, dim2, dim3;
|
||||
Widget AF_MED_IconForm, AF_TINY_IconForm;
|
||||
IconData *pIconData;
|
||||
|
|
|
@ -524,7 +524,7 @@ static Widget _Uxbuild_FileCharacteristics(void)
|
|||
int nbutton = 0;
|
||||
#define TIGHTNESS 20
|
||||
Widget FC_ScrolledWindow;
|
||||
Widget FC_BigForm;
|
||||
Widget FC_BigForm = NULL;
|
||||
char *dialog_title, *pre, *suf;
|
||||
|
||||
|
||||
|
|
|
@ -1051,7 +1051,7 @@ char *s1,*tmp,*s2,buf[10],*cts;
|
|||
Boolean
|
||||
IsLastSingle(char *str)
|
||||
{
|
||||
int n;
|
||||
int n = 0;
|
||||
|
||||
if(MB_CUR_MAX == 1)
|
||||
return(TRUE);
|
||||
|
|
Loading…
Reference in a new issue