4289a33ed4
* src/compose.c fix 2 warnings * src/gtk/prefswindow.[ch] * src/plugins/spamassassin/spamassassin_gtk.c changed the call of the widget create function for PrefsPages, because sometimes the widget create function needs a widget that already has been attached to a window (to create GDK pixmaps for exmaple). So we simply pass the GtkWindow as the second parameter now. * src/main.c * src/mainwindow.c * src/prefs_toolbar.[ch] rewrite Toolbar Preferences using the new prefs window
26 lines
1,002 B
C
26 lines
1,002 B
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999-2001 Hiroyuki Yamamoto
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __PREFS_CUSTOM_TOOLBAR_H__
|
|
#define __PREFS_CUSTOM_TOOLBAR_H__
|
|
|
|
void prefs_toolbar_init();
|
|
void prefs_toolbar_done();
|
|
|
|
#endif /* __PREFS_CUSTOM_TOOLBAR_H__ */
|