aboutsummaryrefslogtreecommitdiff
path: root/src/gui_backend_local.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-25 14:04:25 +0200
committerThomas White <taw@physics.org>2020-08-25 14:04:25 +0200
commit3bb78a39a53b65659eee40a1e522e18f0423252e (patch)
tree1ec5021e75c98d3f19e425b8dcfe6d822fca4852 /src/gui_backend_local.c
parent262639d5ce246e94aeab96260d6c0d2fa5f9fdc0 (diff)
Factor out convert_int
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r--src/gui_backend_local.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c
index 451ca253..dfa208b6 100644
--- a/src/gui_backend_local.c
+++ b/src/gui_backend_local.c
@@ -31,6 +31,8 @@
#include <sys/wait.h>
#include <gtk/gtk.h>
+#include <utils.h>
+
#include "gui_project.h"
@@ -272,21 +274,6 @@ static void cancel_indexing(void *job_priv)
}
-static int convert_int(const char *str, int *pval)
-{
- int val;
- char *rval;
-
- val = strtod(str, &rval);
- if ( *rval != '\0' ) {
- return 1;
- } else {
- *pval = val;
- return 0;
- }
-}
-
-
static void n_processes_activate_sig(GtkEntry *entry, gpointer data)
{
struct local_indexing_opts *opts = data;