| 193 | } |
| 194 | |
| 195 | void |
| 196 | ghb_file_chooser_set_modal (GtkFileChooser *chooser, gboolean modal) |
| 197 | { |
| 198 | g_return_if_fail(GTK_IS_NATIVE_DIALOG(chooser) || GTK_IS_WINDOW(chooser)); |
| 199 | |
| 200 | if (GTK_IS_NATIVE_DIALOG(chooser)) |
| 201 | gtk_native_dialog_set_modal(GTK_NATIVE_DIALOG(chooser), modal); |
| 202 | else if (GTK_IS_WINDOW(chooser)) |
| 203 | gtk_window_set_modal(GTK_WINDOW(chooser), modal); |
| 204 | } |
| 205 | |
| 206 | void |
| 207 | ghb_file_chooser_show (GtkFileChooser *chooser) |
no outgoing calls
no test coverage detected