make function names consistent

edit_capture_dlg_launch() -> edit_capture_comment_dlg_launch()

svn path=/trunk/; revision=47780
This commit is contained in:
Martin Kaiser 2013-02-20 22:18:56 +00:00
parent 18ec6f01a3
commit 4099ef9457
3 changed files with 4 additions and 4 deletions

View File

@ -177,7 +177,7 @@ edit_capture_comment_destroy_cb(GtkWidget *win _U_, gpointer user_data _U_)
}
void
edit_capture_dlg_launch (void)
edit_capture_comment_dlg_launch (void)
{
GtkWidget *vbox;

View File

@ -26,7 +26,7 @@
#define __EDIT_PACKET_COMMENTS_H__
void edit_packet_comment_dlg (GtkAction *action, gpointer data);
void edit_capture_dlg_launch (void);
void edit_capture_comment_dlg_hide(void);
void edit_capture_comment_dlg_launch (void);
void edit_capture_comment_dlg_hide (void);
#endif /* __EDIT_PACKET_COMMENTS_H__ */

View File

@ -558,7 +558,7 @@ expert_comp_dlg_event_cb(GtkWidget *w _U_, GdkEventButton *event _U_, gpointer u
static gboolean
edit_capture_comment_dlg_event_cb(GtkWidget *w _U_, GdkEventButton *event _U_, gpointer user_data _U_)
{
edit_capture_dlg_launch();
edit_capture_comment_dlg_launch();
return TRUE;
}