diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-09-17 23:44:30 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-09-17 23:44:30 +0000 |
| commit | 979d809bbbe2d3ed1fc5a296c8f99f5d8c395f4b (patch) | |
| tree | 23aacc7cf2cfbbca969ecc36207a9c73cbea6d58 /src/widgets/stroke-marker-selector.h | |
| parent | fix typo in marker bbox calculation (Bug 1051131) (diff) | |
| download | inkscape-979d809bbbe2d3ed1fc5a296c8f99f5d8c395f4b.tar.gz inkscape-979d809bbbe2d3ed1fc5a296c8f99f5d8c395f4b.zip | |
Fix for 165865 : Fix marker color on duplicate
(bzr r11671)
Diffstat (limited to 'src/widgets/stroke-marker-selector.h')
| -rw-r--r-- | src/widgets/stroke-marker-selector.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/widgets/stroke-marker-selector.h b/src/widgets/stroke-marker-selector.h index 14c5ad758..02038ea42 100644 --- a/src/widgets/stroke-marker-selector.h +++ b/src/widgets/stroke-marker-selector.h @@ -32,7 +32,7 @@ class Adjustment; class MarkerComboBox : public Gtk::ComboBox { public: - MarkerComboBox(gchar const *id); + MarkerComboBox(gchar const *id, int loc); ~MarkerComboBox(); void setDesktop(SPDesktop *desktop); @@ -45,14 +45,15 @@ public: const gchar *get_active_marker_uri(); bool update() { return updating; }; gchar const *get_id() { return combo_id; }; - bool isSelectedStock(); void update_marker_image(gchar const *mname); + int get_loc() { return loc; }; private: Glib::RefPtr<Gtk::ListStore> marker_store; gchar const *combo_id; + int loc; bool updating; guint markerCount; SPDesktop *desktop; |
