summaryrefslogtreecommitdiff
path: root/app/bin/dprmfile.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2025-09-20 19:19:34 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2025-09-20 19:19:34 +0200
commite7d20cf352688bf717a01f4e6d9e6f497c2bea4c (patch)
treecfd2ef9b569f49af985a6f1ec44f2614f63c8e78 /app/bin/dprmfile.c
parenta14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 (diff)
New upstream version 5.3.1Beta2upstream/5.3.1Beta2
Diffstat (limited to 'app/bin/dprmfile.c')
-rw-r--r--app/bin/dprmfile.c35
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(&paramFilePG);
paramFileW = ParamCreateDialog(&paramFilePG,
- 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);