nsgmls: resolve coverity warnings related to uninitialed members in C++ classes
[oweals/cde.git] / cde / programs / dtcreate / OpenFile.c
index 73e3df4bd29416d6ea6756b7422e7fb602e9f36d..cc62faffb71b61b6ac1c32a87fb88e63fc04e60c 100644 (file)
@@ -1,3 +1,25 @@
+/*
+ * CDE - Common Desktop Environment
+ *
+ * Copyright (c) 1993-2012, The Open Group. All rights reserved.
+ *
+ * These libraries and programs are free software; you can
+ * redistribute them and/or modify them under the terms of the GNU
+ * Lesser General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * These libraries and programs are distributed in the hope that
+ * they will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU Lesser General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with these librararies and programs; if not, write
+ * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
+ * Floor, Boston, MA 02110-1301 USA
+ */
 /* $XConsortium: OpenFile.c /main/6 1996/10/17 14:06:40 rswiston $ */
 /*******************************************************************************
         OpenFile.c
@@ -15,6 +37,7 @@
 #include "UxXt.h"
 #include "dtcreate.h"
 #include "cmnrtns.h"
+#include "cmncbs.h"
 #include "ca_aux.h"
 #include "fileio.h"
 
@@ -54,7 +77,7 @@ static  void    okCallback_OpenFile( Widget UxWidget,
         _UxCOpenFile                     *UxSaveCtx, *UxContext;
         XmFileSelectionBoxCallbackStruct *cbs;
         /*char        *text;*/
-        int         rc;
+        int         rc = 1; /* 1 = OpenDefinitionFile() failure */
         ActionData  ADTmp;
 
         UxSaveCtx = UxOpenFileContext;
@@ -110,7 +133,7 @@ static  void    helpCallback_OpenFile( Widget UxWidget,
         UxOpenFileContext = UxContext =
                         (_UxCOpenFile *) UxGetContext( UxWidget );
         {
-        DisplayHelpDialog(UxWidget, HELP_OPENFILE, UxCallbackArg);
+        DisplayHelpDialog(UxWidget, (XtPointer)HELP_OPENFILE, UxCallbackArg);
         }
         UxOpenFileContext = UxSaveCtx;
 }