diff options
Diffstat (limited to 'Linux_C_12/cCrossCallFileSelectors_121.c')
-rw-r--r-- | Linux_C_12/cCrossCallFileSelectors_121.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Linux_C_12/cCrossCallFileSelectors_121.c b/Linux_C_12/cCrossCallFileSelectors_121.c index c36e6d8..ff06bc0 100644 --- a/Linux_C_12/cCrossCallFileSelectors_121.c +++ b/Linux_C_12/cCrossCallFileSelectors_121.c @@ -47,13 +47,13 @@ void EvalCcRqDIRECTORYDIALOG (CrossCallInfo *pcci) /* no params; bool, textptr file_name = g_strdup(fname);
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_true(), (int) file_name);
+ MakeReturn2Cci(pcci, gtk_true(), (int64_t) file_name);
return;
}
else
{
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_false(), (int) NULL);
+ MakeReturn2Cci(pcci, gtk_false(), (int64_t) NULL);
return;
}
}
@@ -93,13 +93,13 @@ void EvalCcRqFILEOPENDIALOG (CrossCallInfo *pcci) /* no params; bool, textptr file_name = g_strdup(fname);
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_true(), (int) file_name);
+ MakeReturn2Cci(pcci, gtk_true(), (int64_t) file_name);
return;
}
else
{
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_false(), (int) NULL);
+ MakeReturn2Cci(pcci, gtk_false(), (int64_t) NULL);
return;
}
}
@@ -117,7 +117,7 @@ void EvalCcRqFILESAVEDIALOG (CrossCallInfo *pcci) /* promptptr, nameptr; bool, gtk_window_set_transient_for(GTK_WINDOW(file_selector), GTK_WINDOW(gActiveTopLevelWindow));
}
- gtk_file_selection_set_filename(file_selector, (gchar *) pcci->p2);
+ gtk_file_selection_set_filename((GtkFileSelection*) file_selector, (gchar *) pcci->p2);
for (;;)
{
@@ -143,13 +143,13 @@ void EvalCcRqFILESAVEDIALOG (CrossCallInfo *pcci) /* promptptr, nameptr; bool, file_name = g_strdup(fname);
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_true(), (int) file_name);
+ MakeReturn2Cci(pcci, gtk_true(), (int64_t) file_name);
return;
}
else
{
gtk_widget_destroy(file_selector);
- MakeReturn2Cci(pcci, gtk_false(), (int) NULL);
+ MakeReturn2Cci(pcci, gtk_false(), (int64_t) NULL);
return;
}
}
|