Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
Files
Commits
f4063769
Commit
f4063769
authored
Feb 08, 2000
by
John Sullivan
Browse files
Turned -Werror back on.
parent
92699dfb
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog-20000414
View file @
f4063769
2000-02-08 John Sullivan <sullivan@eazel.com>
* configure.in: turned -Werror back on. It had been turned off a
few days ago, presumably accidentally.
* src/nautilus-index-tabs.c: (draw_one_tab): #if-0'ed this
currently unused function out since -Werror doesn't like unused functions.
2000-02-08 Elliot Lee <sopwith@redhat.com>
* src/ntl-window-msgs.c: Don't segfault if an error occurs while loading the start page.
...
...
configure.in
View file @
f4063769
...
...
@@ -34,7 +34,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
-Wno-sign-compare -Wsign-promo"
fi
if test "$GCC" = "yes"; then
WERROR=""
WERROR="
-Werror
"
fi
AC_SUBST(WERROR)
...
...
src/nautilus-index-tabs.c
View file @
f4063769
...
...
@@ -173,6 +173,8 @@ recalculate_size(NautilusIndexTabs *index_tabs)
/* draw a single tab at the passed-in position */
#if 0 /* temporarily commented out since compiler with -Werror stops on unused functions */
static void
draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
{
...
...
@@ -184,6 +186,8 @@ draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
/* draw the right bottom line */
}
#endif
/* draw all of the currently visible tabs */
static
void
...
...
src/nautilus-sidebar-tabs.c
View file @
f4063769
...
...
@@ -173,6 +173,8 @@ recalculate_size(NautilusIndexTabs *index_tabs)
/* draw a single tab at the passed-in position */
#if 0 /* temporarily commented out since compiler with -Werror stops on unused functions */
static void
draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
{
...
...
@@ -184,6 +186,8 @@ draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
/* draw the right bottom line */
}
#endif
/* draw all of the currently visible tabs */
static
void
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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