diff options
author | Camil Staps | 2015-08-07 11:44:48 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-07 11:44:48 +0200 |
commit | 6ebf74a468ea6c4c667a0592aa59683f745bfdfe (patch) | |
tree | cf4ccc91197ffbdf655fe9f80700b48413c2ad65 /Linux_C_12/cCrossCallWindows_121.c | |
parent | Debugging; word sizes (Int -> pointer); fix CleanStrings (diff) |
Fixed some issues with strings
Diffstat (limited to 'Linux_C_12/cCrossCallWindows_121.c')
-rw-r--r-- | Linux_C_12/cCrossCallWindows_121.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Linux_C_12/cCrossCallWindows_121.c b/Linux_C_12/cCrossCallWindows_121.c index 88f70e0..9950a52 100644 --- a/Linux_C_12/cCrossCallWindows_121.c +++ b/Linux_C_12/cCrossCallWindows_121.c @@ -1397,7 +1397,7 @@ void EvalCcRqCREATEDIALOG (CrossCallInfo *pcci) // textptr,parentptr,behindPtr; pwintitle = (const gchar *) pcci->p1;
dialog = gtk_dialog_new();
- gtk_dialog_set_has_separator(GTK_DIALOG(dialog), gtk_false());
+ gtk_dialog_set_has_separator(GTK_DIALOG(dialog), gtk_true());
gtk_window_set_resizable(GTK_WINDOW(dialog), gtk_false());
gtk_signal_connect (GTK_OBJECT(dialog), "delete-event",
GTK_SIGNAL_FUNC(dialog_close_handler),
@@ -1419,7 +1419,6 @@ void EvalCcRqCREATEDIALOG (CrossCallInfo *pcci) // textptr,parentptr,behindPtr; gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), fixed, TRUE, TRUE, 0);
gtk_widget_show(fixed);
- rprintf("Sending dialog to clean: %p / %p\n", dialog, (int64_t) dialog);
SendMessage1ToClean (CcWmINITDIALOG, (int64_t) dialog);
x = gCci.p1;
|