diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-02-20 09:11:27 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-02-20 09:11:27 +0000 |
| commit | ae099de0a892d06655ad7143c1443fec5ca517e2 (patch) | |
| tree | eaf460ba9619d9b843f95f2d0bae3b4d6b875cc9 /src/ui/previewholder.h | |
| parent | fix Bug #191909 crash on lpe stitch sub-paths, also fix crash for bend path lpe (diff) | |
| download | inkscape-ae099de0a892d06655ad7143c1443fec5ca517e2.tar.gz inkscape-ae099de0a892d06655ad7143c1443fec5ca517e2.zip | |
Decoupled swatch sizes from icon sizes
(bzr r4790)
Diffstat (limited to 'src/ui/previewholder.h')
| -rw-r--r-- | src/ui/previewholder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/previewholder.h b/src/ui/previewholder.h index 046cdf7c7..e3515c987 100644 --- a/src/ui/previewholder.h +++ b/src/ui/previewholder.h @@ -17,7 +17,7 @@ #include <gtkmm/bin.h> #include <gtkmm/table.h> #include "previewfillable.h" -#include "../icon-size.h" +#include "../dialogs/eek-preview.h" namespace Inkscape { namespace UI { @@ -32,11 +32,11 @@ public: virtual void addPreview( Previewable* preview ); virtual void freezeUpdates(); virtual void thawUpdates(); - virtual void setStyle( Inkscape::IconSize size, ViewType view ); + virtual void setStyle( ::PreviewSize size, ViewType view ); virtual void setOrientation( Gtk::AnchorType how ); virtual int getColumnPref() const { return _prefCols; } virtual void setColumnPref( int cols ); - virtual Inkscape::IconSize getPreviewSize() const { return _baseSize; } + virtual ::PreviewSize getPreviewSize() const { return _baseSize; } virtual ViewType getPreviewType() const { return _view; } virtual void setWrap( bool b ); virtual bool getWrap() const { return _wrap; } @@ -56,7 +56,7 @@ private: int _prefCols; bool _updatesFrozen; Gtk::AnchorType _anchor; - Inkscape::IconSize _baseSize; + ::PreviewSize _baseSize; ViewType _view; bool _wrap; }; |
