Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
1c2ad2ba
Commit
1c2ad2ba
authored
Oct 28, 2004
by
Sven Neumann
Browse files
*** empty log message ***
parent
180d3845
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
app/dialogs/resize-dialog.c
View file @
1c2ad2ba
This diff is collapsed.
Click to expand it.
plug-ins/helpbrowser/dialog.c
View file @
1c2ad2ba
...
...
@@ -62,7 +62,7 @@ enum
static
void
browser_dialog_404
(
HtmlDocument
*
doc
,
const
gchar
*
url
,
GError
*
error
);
const
gchar
*
message
);
static
void
button_callback
(
GtkWidget
*
widget
,
gpointer
data
);
...
...
@@ -343,7 +343,7 @@ browser_dialog_load (const gchar *ref,
if
(
!
request_url
(
doc
,
abs
,
doc
->
current_stream
,
&
error
))
{
browser_dialog_404
(
doc
,
abs
,
error
);
browser_dialog_404
(
doc
,
abs
,
error
->
message
);
g_error_free
(
error
);
}
}
...
...
@@ -372,7 +372,7 @@ browser_dialog_load (const gchar *ref,
static
void
browser_dialog_404
(
HtmlDocument
*
doc
,
const
gchar
*
url
,
GError
*
error
)
const
gchar
*
message
)
{
gchar
*
msg
=
g_strdup_printf
(
"<html>"
...
...
@@ -391,7 +391,7 @@ browser_dialog_404 (HtmlDocument *doc,
eek_png_tag
,
_
(
"The requested URL could not be loaded:"
),
url
,
error
->
message
);
message
);
html_document_write_stream
(
doc
,
msg
,
strlen
(
msg
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment