diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-03 18:01:32 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-03 18:01:32 +0100 |
commit | 85e9bcfb399e489eaa6fbf467f940baa69239bf2 (patch) | |
tree | d229180cf49eb362f808af7d04804b0d7f9f4d00 /src/sane-rules.h | |
parent | 88d74cf2b768eda753cd2bc85013203be6d9ca3b (diff) | |
download | ayatana-indicator-session-85e9bcfb399e489eaa6fbf467f940baa69239bf2.tar.gz ayatana-indicator-session-85e9bcfb399e489eaa6fbf467f940baa69239bf2.tar.bz2 ayatana-indicator-session-85e9bcfb399e489eaa6fbf467f940baa69239bf2.zip |
refactor of the udev mgr - working nicely
Diffstat (limited to 'src/sane-rules.h')
-rw-r--r-- | src/sane-rules.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sane-rules.h b/src/sane-rules.h index 4c36698..871565b 100644 --- a/src/sane-rules.h +++ b/src/sane-rules.h @@ -2,6 +2,7 @@ void populate_usb_scanners (GHashTable* scanners) { GList* hp = NULL; + hp = g_list_append (hp, g_strdup ("0101")); hp = g_list_append (hp, g_strdup ("0105")); hp = g_list_append (hp, g_strdup ("0201")); @@ -308,6 +309,10 @@ void populate_usb_scanners (GHashTable* scanners) g_list_copy(nikon)); GList* epson = NULL; + + // for testing (its a printer not a scanner!) + //epson = g_list_append (epson, g_strdup ("0001")); + epson = g_list_append (epson, g_strdup("0101")); epson = g_list_append (epson, g_strdup("0103")); epson = g_list_append (epson, g_strdup("0104")); |