Commit cf52c1e2 authored by claes's avatar claes

wow_DisplayWarrant can be

started as workprocedure
parent a63dba5d
/** /**
* Proview $Id: co_wow.c,v 1.7 2005-09-01 14:57:52 claes Exp $ * Proview $Id: co_wow.c,v 1.8 2005-09-06 14:17:10 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -749,7 +749,7 @@ void warranty_help_cb( void *ctx, void *data) ...@@ -749,7 +749,7 @@ void warranty_help_cb( void *ctx, void *data)
wow_DisplayLicense( (Widget) data); wow_DisplayLicense( (Widget) data);
} }
void wow_DisplayWarranty( Widget father) int wow_DisplayWarranty( Widget father)
{ {
char text[4000]; char text[4000];
Arg arg[12]; Arg arg[12];
...@@ -769,10 +769,10 @@ void wow_DisplayWarranty( Widget father) ...@@ -769,10 +769,10 @@ void wow_DisplayWarranty( Widget father)
fp = fopen( fname, "r"); fp = fopen( fname, "r");
if ( !fp) { if ( !fp) {
strcpy( fname, "$pwr_exe/en_us/acceptlincense.txt"); strcpy( fname, "$pwr_exe/en_us/acceptlicense.txt");
dcli_translate_filename( fname, fname); dcli_translate_filename( fname, fname);
fp = fopen( fname, "r"); fp = fopen( fname, "r");
if ( !fp) return; if ( !fp) return 1;
} }
for ( i = 0; i < sizeof(text) - 1; i++) { for ( i = 0; i < sizeof(text) - 1; i++) {
...@@ -833,6 +833,7 @@ void wow_DisplayWarranty( Widget father) ...@@ -833,6 +833,7 @@ void wow_DisplayWarranty( Widget father)
XmFontListFree( fontlist); XmFontListFree( fontlist);
XtManageChild( question_widget); XtManageChild( question_widget);
return 1;
} }
void wow_DisplayLicense( Widget father) void wow_DisplayLicense( Widget father)
......
/** /**
* Proview $Id: co_wow.h,v 1.6 2005-09-01 14:57:52 claes Exp $ * Proview $Id: co_wow.h,v 1.7 2005-09-06 14:17:10 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -93,7 +93,7 @@ void wow_GetLabel( Widget w, char *label); ...@@ -93,7 +93,7 @@ void wow_GetLabel( Widget w, char *label);
void wow_GetCSText( XmString ar_value, char *t_buffer); void wow_GetCSText( XmString ar_value, char *t_buffer);
int wow_GetSelection( Widget w, char *str, int size, Atom atom); int wow_GetSelection( Widget w, char *str, int size, Atom atom);
void wow_GetAtoms( Widget w, Atom *graph_atom, Atom *objid_atom, Atom *attrref_atom); void wow_GetAtoms( Widget w, Atom *graph_atom, Atom *objid_atom, Atom *attrref_atom);
void wow_DisplayWarranty( Widget father); int wow_DisplayWarranty( Widget father);
void wow_DisplayLicense( Widget father); void wow_DisplayLicense( Widget father);
#if defined __cplusplus #if defined __cplusplus
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment