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
430
Issues
430
List
Boards
Labels
Service Desk
Milestones
Merge Requests
25
Merge Requests
25
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
5797b1bf
Commit
5797b1bf
authored
Dec 16, 1999
by
Darin Adler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some warnings.
parent
a4a7dc95
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
2 deletions
+17
-2
ChangeLog-20000414
ChangeLog-20000414
+7
-0
components/help/.cvsignore
components/help/.cvsignore
+3
-0
components/help/hyperbola-filefmt.c
components/help/hyperbola-filefmt.c
+1
-1
components/help/hyperbola-main.c
components/help/hyperbola-main.c
+1
-0
components/help/hyperbola-nav-tree.c
components/help/hyperbola-nav-tree.c
+5
-1
No files found.
ChangeLog-20000414
View file @
5797b1bf
1999-12-15 Darin Adler <darin@eazel.com>
* components/help/.cvsignore: Ignore more generated files.
* components/help/hyperbols-filefmt.c: Fix warnings.
* components/help/hyperbols-main.c: Fix warnings.
* components/help/hyperbols-nav-tree.c: Fix warnings.
1999-12-15 Elliot Lee <sopwith@redhat.com>
* components/Makefile.am: Turn on compilation of hyperbola component.
...
...
components/help/.cvsignore
View file @
5797b1bf
.deps
.libs
Makefile
Makefile.in
hyperbola
components/help/hyperbola-filefmt.c
View file @
5797b1bf
...
...
@@ -26,7 +26,7 @@ static FormatHandler format_handlers[] = {
{
"ghelp"
,
fmt_ghelp_populate_tree
},
{
"man"
,
fmt_man_populate_tree
},
{
"info"
,
fmt_info_populate_tree
},
{
NULL
}
{
NULL
,
NULL
}
};
static
gboolean
...
...
components/help/hyperbola-main.c
View file @
5797b1bf
...
...
@@ -10,6 +10,7 @@ make_obj(GnomeGenericFactory *Factory, const char *goad_id, void *closure)
{
if
(
!
strcmp
(
goad_id
,
"hyperbola_navigation_tree"
))
return
hyperbola_navigation_tree_new
();
return
NULL
;
}
int
main
(
int
argc
,
char
*
argv
[])
...
...
components/help/hyperbola-nav-tree.c
View file @
5797b1bf
...
...
@@ -11,6 +11,10 @@ typedef struct {
gint
notify_count
;
}
HyperbolaNavigationTree
;
/* Temporary prototypes until hyperbola-nav-tree.h compiles. */
GtkType
hyperbola_navigation_tree_get_type
(
void
);
GnomeObject
*
hyperbola_navigation_tree_new
(
void
);
static
void
hyperbola_navigation_tree_select_row
(
GtkCTree
*
ctree
,
GtkCTreeNode
*
node
,
gint
column
,
...
...
@@ -52,7 +56,7 @@ ctree_populate_subnode(gpointer key, gpointer value, gpointer user_data)
static
void
ctree_populate
(
HyperbolaNavigationTree
*
view
)
{
PopulateInfo
subpi
=
{
NULL
};
PopulateInfo
subpi
=
{
NULL
,
NULL
,
NULL
};
subpi
.
view
=
view
;
...
...
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