Code

revert the PS rotation part of Adrian's patch for 437550, see discussion in the bug
[inkscape.git] / src / profile-manager.h
index d72ad3dd8cf768a21e2f36de9afb7c9082b8a6b3..61e22615fd080d270876b40df97d024aa78e8296 100644 (file)
@@ -13,7 +13,7 @@
 #include "gc-finalized.h"
 #include <vector>
 
-class Document;
+class SPDocument;
 
 namespace Inkscape {
 
@@ -23,7 +23,7 @@ class ProfileManager : public DocumentSubset,
                        public GC::Finalized
 {
 public:
-    ProfileManager(Document *document);
+    ProfileManager(SPDocument *document);
     ~ProfileManager();
 
     ColorProfile* find(gchar const* name);
@@ -34,7 +34,7 @@ private:
 
     void _resourcesChanged();
 
-    Document* _doc;
+    SPDocument* _doc;
     sigc::connection _resource_connection;
     std::vector<SPObject*> _knownProfiles;
 };