~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/ui/dialog/memory.h

  • Committer: gustav_b
  • Date: 2007-08-29 21:27:07 UTC
  • Revision ID: gustav_b@users.sourceforge.net-20070829212707-xvg87a2oqejqioxv
Dockable dialogs patch applied 
(https://sourceforge.net/tracker/?func=detail&atid=604308&aid=1688508&group_id=93438)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
class Memory : public Dialog {
22
22
public:
23
 
    Memory();
 
23
    Memory(Behavior::BehaviorFactory behavior_factory);
24
24
    ~Memory();
25
25
 
26
 
    static Memory *create() { return new Memory(); }
 
26
    static Memory *create(Behavior::BehaviorFactory behavior_factory) 
 
27
    { return new Memory(behavior_factory); }
27
28
 
28
29
protected:
29
30
    void _apply();