Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Files
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
448
Issues
448
List
Boards
Labels
Service Desk
Milestones
Merge Requests
35
Merge Requests
35
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
Files
Commits
f4063769
Commit
f4063769
authored
Feb 08, 2000
by
John Sullivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turned -Werror back on.
parent
92699dfb
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
ChangeLog-20000414
ChangeLog-20000414
+7
-0
configure.in
configure.in
+1
-1
src/nautilus-index-tabs.c
src/nautilus-index-tabs.c
+4
-0
src/nautilus-sidebar-tabs.c
src/nautilus-sidebar-tabs.c
+4
-0
No files found.
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
Markdown
is supported
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