diff options
| author | Jon Phillips <jon@fabricatorz.com> | 2006-08-22 21:24:21 +0000 |
|---|---|---|
| committer | kidproto <kidproto@users.sourceforge.net> | 2006-08-22 21:24:21 +0000 |
| commit | a4cc625e3e8baed9c7c14f2c0ffa09144b6ed321 (patch) | |
| tree | 5f2251774ad19e497ceb49727cb1de51dc77eee4 /src/ui/dialog/filedialog.cpp | |
| parent | I added a key configuration for this command, changed a variable name and add... (diff) | |
| download | inkscape-a4cc625e3e8baed9c7c14f2c0ffa09144b6ed321.tar.gz inkscape-a4cc625e3e8baed9c7c14f2c0ffa09144b6ed321.zip | |
I added Johan's badass patch for save a copy with the features I requested.
Now it all works quite well! Great!
(bzr r1630)
Diffstat (limited to 'src/ui/dialog/filedialog.cpp')
| -rw-r--r-- | src/ui/dialog/filedialog.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ui/dialog/filedialog.cpp b/src/ui/dialog/filedialog.cpp index 0e8a8a07b..3417ba06c 100644 --- a/src/ui/dialog/filedialog.cpp +++ b/src/ui/dialog/filedialog.cpp @@ -5,6 +5,7 @@ * Bob Jamison * Other dudes from The Inkscape Organization * + * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 2004-2006 The Inkscape Organization * * Released under GNU GPL, read the file 'COPYING' for more information @@ -1136,6 +1137,8 @@ public: Glib::ustring getFilename(); + void change_title(const Glib::ustring& title); + private: @@ -1510,6 +1513,12 @@ FileSaveDialogImpl::getFilename() } +void +FileSaveDialogImpl::change_title(const Glib::ustring& title) +{ + this->set_title(title); +} + |
