mirror of https://github.com/GNOME/gimp.git
app: rename convert-type-dialog.[ch] to convert-indexed-dialog.[ch]
This commit is contained in:
parent
182da6d2e9
commit
5aff776a8a
|
@ -57,8 +57,8 @@
|
|||
#include "display/gimpdisplayshell.h"
|
||||
|
||||
#include "dialogs/color-profile-dialog.h"
|
||||
#include "dialogs/convert-indexed-dialog.h"
|
||||
#include "dialogs/convert-precision-dialog.h"
|
||||
#include "dialogs/convert-type-dialog.h"
|
||||
#include "dialogs/grid-dialog.h"
|
||||
#include "dialogs/image-merge-layers-dialog.h"
|
||||
#include "dialogs/image-new-dialog.h"
|
||||
|
@ -223,7 +223,7 @@ image_convert_base_type_cmd_callback (GtkAction *action,
|
|||
break;
|
||||
|
||||
case GIMP_INDEXED:
|
||||
dialog = convert_type_dialog_new (image,
|
||||
dialog = convert_indexed_dialog_new (image,
|
||||
action_data_get_context (data),
|
||||
widget,
|
||||
GIMP_PROGRESS (display));
|
||||
|
|
|
@ -30,10 +30,10 @@ libappdialogs_a_sources = \
|
|||
color-profile-dialog.h \
|
||||
color-profile-import-dialog.c \
|
||||
color-profile-import-dialog.h \
|
||||
convert-indexed-dialog.c \
|
||||
convert-indexed-dialog.h \
|
||||
convert-precision-dialog.c \
|
||||
convert-precision-dialog.h \
|
||||
convert-type-dialog.c \
|
||||
convert-type-dialog.h \
|
||||
data-delete-dialog.c \
|
||||
data-delete-dialog.h \
|
||||
fade-dialog.c \
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "widgets/gimpviewabledialog.h"
|
||||
#include "widgets/gimpwidgets-utils.h"
|
||||
|
||||
#include "convert-type-dialog.h"
|
||||
#include "convert-indexed-dialog.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
|
||||
|
@ -89,7 +89,7 @@ static GimpPalette *saved_palette = NULL;
|
|||
/* public functions */
|
||||
|
||||
GtkWidget *
|
||||
convert_type_dialog_new (GimpImage *image,
|
||||
convert_indexed_dialog_new (GimpImage *image,
|
||||
GimpContext *context,
|
||||
GtkWidget *parent,
|
||||
GimpProgress *progress)
|
|
@ -15,14 +15,14 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __CONVERT_TYPE_DIALOG_H__
|
||||
#define __CONVERT_TYPE_DIALOG_H__
|
||||
#ifndef __CONVERT_INDEXED_DIALOG_H__
|
||||
#define __CONVERT_INDEXED_DIALOG_H__
|
||||
|
||||
|
||||
GtkWidget * convert_type_dialog_new (GimpImage *image,
|
||||
GtkWidget * convert_indexed_dialog_new (GimpImage *image,
|
||||
GimpContext *context,
|
||||
GtkWidget *parent,
|
||||
GimpProgress *progress);
|
||||
|
||||
|
||||
#endif /* __CONVERT_TYPE_DIALOG_H__ */
|
||||
#endif /* __CONVERT_INDEXED_DIALOG_H__ */
|
|
@ -192,8 +192,8 @@ app/dialogs/action-search-dialog.c
|
|||
app/dialogs/channel-options-dialog.c
|
||||
app/dialogs/color-profile-dialog.c
|
||||
app/dialogs/color-profile-import-dialog.c
|
||||
app/dialogs/convert-indexed-dialog.c
|
||||
app/dialogs/convert-precision-dialog.c
|
||||
app/dialogs/convert-type-dialog.c
|
||||
app/dialogs/data-delete-dialog.c
|
||||
app/dialogs/dialogs-constructors.c
|
||||
app/dialogs/dialogs.c
|
||||
|
|
Loading…
Reference in New Issue