* panel.h, screen.c (panel_new): panel_name constified to do gcc
some more happy when gmc is compiled
Этот коммит содержится в:
родитель
e9ebf51f22
Коммит
4463ea58c2
@ -1,3 +1,8 @@
|
||||
2001-03-30 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* panel.h, screen.c (panel_new): panel_name constified to do gcc
|
||||
some more happy when gmc is compiled
|
||||
|
||||
2001-03-18 Miguel de Icaza <miguel@ximian.com>
|
||||
|
||||
* widget.c (forward_word, backward_word): Revert Timur's patch
|
||||
@ -57,6 +62,8 @@
|
||||
|
||||
* Makefile.in: Respect LDFLAGS when linking cons.saver.
|
||||
|
||||
2000-11-20 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* view.c: Fixed long existed bugs in internal viewer. When search is
|
||||
doing in binary file it ignore skipped zero(es), so cursor is before
|
||||
searched expression and next search find the same string. Also regexp
|
||||
|
@ -202,7 +202,7 @@ typedef struct {
|
||||
#endif
|
||||
} WPanel;
|
||||
|
||||
WPanel *panel_new (char *panel_name);
|
||||
WPanel *panel_new (const char *panel_name);
|
||||
void panel_set_size (WPanel *panel, int x1, int y1, int x2, int y2);
|
||||
void paint_paint (WPanel *panel);
|
||||
void panel_refresh (WPanel *panel);
|
||||
|
@ -968,7 +968,7 @@ is_a_panel (Widget *w)
|
||||
/* Panel creation */
|
||||
/* The parameter specifies the name of the panel for setup retieving */
|
||||
WPanel *
|
||||
panel_new (char *panel_name)
|
||||
panel_new (const char *panel_name)
|
||||
{
|
||||
#ifdef HAVE_GNOME
|
||||
static int panel_id = 0;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user