diff options
Diffstat (limited to 'app/bin/dprmfile.c')
| -rw-r--r-- | app/bin/dprmfile.c | 35 | 
1 files changed, 18 insertions, 17 deletions
diff --git a/app/bin/dprmfile.c b/app/bin/dprmfile.c index ced4c8f..a9ddbb1 100644 --- a/app/bin/dprmfile.c +++ b/app/bin/dprmfile.c @@ -32,14 +32,14 @@  static struct wFilSel_t * paramFile_fs; -#include "bitmaps/greendot.xpm" -#include "bitmaps/greydot.xpm" -#include "bitmaps/yellowdot.xpm" -#include "bitmaps/reddot.xpm" -#include "bitmaps/greenstar.xpm" -#include "bitmaps/greystar.xpm" -#include "bitmaps/yellowstar.xpm" -#include "bitmaps/redstar.xpm" +#include "bitmaps/greendot.image1" +#include "bitmaps/greydot.image1" +#include "bitmaps/yellowdot.image1" +#include "bitmaps/reddot.image1" +#include "bitmaps/greenstar.image1" +#include "bitmaps/greystar.image1" +#include "bitmaps/yellowstar.image1" +#include "bitmaps/redstar.image1"  #define FAVORITE_PARAM 1  #define STANDARD_PARAM 0 @@ -410,25 +410,26 @@ void DoParamFiles(void * junk)  	if (paramFileW == NULL) {  		indicatorIcons[ STANDARD_PARAM ][ PARAMFILE_UNLOADED ] = wIconCreatePixMap( -		                        greydot); +		                        greydot_image1);  		indicatorIcons[ STANDARD_PARAM ][ PARAMFILE_NOTUSABLE ] = wIconCreatePixMap( -		                        reddot); +		                        reddot_image1);  		indicatorIcons[ STANDARD_PARAM ][ PARAMFILE_COMPATIBLE ] = wIconCreatePixMap( -		                        yellowdot); -		indicatorIcons[ STANDARD_PARAM ][ PARAMFILE_FIT] = wIconCreatePixMap(greendot); +		                        yellowdot_image1); +		indicatorIcons[ STANDARD_PARAM ][ PARAMFILE_FIT] = wIconCreatePixMap( +		                        greendot_image1);  		indicatorIcons[ FAVORITE_PARAM ][ PARAMFILE_UNLOADED ] = wIconCreatePixMap( -		                        greystar); +		                        greystar_image1);  		indicatorIcons[ FAVORITE_PARAM ][ PARAMFILE_NOTUSABLE ] = wIconCreatePixMap( -		                        redstar); +		                        redstar_image1);  		indicatorIcons[ FAVORITE_PARAM ][ PARAMFILE_COMPATIBLE ] = wIconCreatePixMap( -		                        yellowstar); +		                        yellowstar_image1);  		indicatorIcons[ FAVORITE_PARAM ][ PARAMFILE_FIT ] = wIconCreatePixMap( -		                        greenstar); +		                        greenstar_image1);  		ParamRegister(¶mFilePG);  		paramFileW = ParamCreateDialog(¶mFilePG, -		                               MakeWindowTitle(_("Parameter Files")), _("Ok"), ParamFileOk, NULL, +		                               MakeWindowTitle(_("Parameter Files")), _("Done"), ParamFileOk, ParamCancel_Null,  		                               TRUE, NULL, F_RESIZE | F_RECALLSIZE, ParamFileDlgUpdate);  		paramFile_fs = wFilSelCreate(mainW, FS_LOAD, FS_MULTIPLEFILES,  		                             _("Load Parameters"), _("Parameter files (*.xtp)|*.xtp"), LoadParamFile, NULL);  | 
