Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
351c7062
Commit
351c7062
authored
16 years ago
by
Emmanuel Milou
Browse files
Options
Downloads
Patches
Plain Diff
not much
parent
5a66994e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
sflphone-gtk/src/calltree.c
+3
-1
3 additions, 1 deletion
sflphone-gtk/src/calltree.c
sflphone-gtk/src/historyfilter.c
+1
-1
1 addition, 1 deletion
sflphone-gtk/src/historyfilter.c
sflphone-gtk/src/mainwindow.c
+5
-1
5 additions, 1 deletion
sflphone-gtk/src/mainwindow.c
with
9 additions
and
3 deletions
sflphone-gtk/src/calltree.c
+
3
−
1
View file @
351c7062
...
...
@@ -43,7 +43,9 @@ gboolean history_shown;
void
switch_tab
()
{
(
gtk_toggle_tool_button_get_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
)))
?
gtk_toggle_tool_button_set_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
),
FALSE
)
:
gtk_toggle_tool_button_set_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
),
TRUE
);
(
gtk_toggle_tool_button_get_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
)))
?
gtk_toggle_tool_button_set_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
),
FALSE
)
:
gtk_toggle_tool_button_set_active
(
GTK_TOGGLE_TOOL_BUTTON
(
historyButton
),
TRUE
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
sflphone-gtk/src/historyfilter.c
+
1
−
1
View file @
351c7062
/*
* Copyright (C) 200
7
Savoir-Faire Linux inc.
* Copyright (C) 200
8
Savoir-Faire Linux inc.
* Author: Antoine Reversat <antoine.reversat@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
...
...
This diff is collapsed.
Click to expand it.
sflphone-gtk/src/mainwindow.c
+
5
−
1
View file @
351c7062
/*
* Copyright (C) 2007 Savoir-Faire Linux inc.
* Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
* Author: Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -39,6 +40,7 @@ GtkWidget * dialpad = NULL;
GtkWidget
*
speaker_control
=
NULL
;
GtkWidget
*
mic_control
=
NULL
;
GtkWidget
*
statusBar
=
NULL
;
GtkWidget
*
filterEntry
=
NULL
;
/**
* Minimize the main window.
...
...
@@ -149,9 +151,11 @@ create_main_window ()
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
widget
,
FALSE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
widget
=
create_toolbar
();
filterEntry
=
create_filter_entry
();
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
widget
,
FALSE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
create_
filter
_e
ntry
()
,
FALSE
/*expand*/
,
FALSE
/*fill*/
,
0
/*padding*/
);
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
filter
E
ntry
,
FALSE
/*expand*/
,
FALSE
/*fill*/
,
0
/*padding*/
);
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
current_calls
->
tree
,
TRUE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
history
->
tree
,
TRUE
/*expand*/
,
TRUE
/*fill*/
,
0
/*padding*/
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment