summaryrefslogtreecommitdiffstats
path: root/src/dialogs
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2006-04-01 18:58:38 +0000
committerjoncruz <joncruz@users.sourceforge.net>2006-04-01 18:58:38 +0000
commitcb3054de12b5260f4d5ddf838096aa2c5490fecb (patch)
treec56f76524f92bb60335601d1705e9858d84e7152 /src/dialogs
parentmerge ::dragging and ::dynahand (diff)
downloadinkscape-cb3054de12b5260f4d5ddf838096aa2c5490fecb.tar.gz
inkscape-cb3054de12b5260f4d5ddf838096aa2c5490fecb.zip
Introducing optional LittleCms use.
(bzr r391)
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/swatches.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dialogs/swatches.cpp b/src/dialogs/swatches.cpp
index ab4fa35ad..a4b9a0d7d 100644
--- a/src/dialogs/swatches.cpp
+++ b/src/dialogs/swatches.cpp
@@ -97,8 +97,10 @@ typedef enum {
} colorFlavorType;
static const GtkTargetEntry sourceColorEntries[] = {
+#if ENABLE_LCMS
// {"application/x-inkscape-color-id", GTK_TARGET_SAME_APP, APP_X_INKY_COLOR_ID},
{"application/x-inkscape-color", 0, APP_X_INKY_COLOR},
+#endif // ENABLE_LCMS
{"application/x-color", 0, APP_X_COLOR},
{"text/plain", 0, TEXT_DATA},
};
@@ -231,8 +233,10 @@ static void dieDieDie( GtkObject *obj, gpointer user_data )
}
static const GtkTargetEntry destColorTargets[] = {
+#if ENABLE_LCMS
// {"application/x-inkscape-color-id", GTK_TARGET_SAME_APP, APP_X_INKY_COLOR_ID},
{"application/x-inkscape-color", 0, APP_X_INKY_COLOR},
+#endif // ENABLE_LCMS
{"application/x-color", 0, APP_X_COLOR},
};