diff options
| author | Bruno Dilly <bruno.dilly@gmail.com> | 2007-08-16 12:19:21 +0000 |
|---|---|---|
| committer | bdilly <bdilly@users.sourceforge.net> | 2007-08-16 12:19:21 +0000 |
| commit | b8881635446b32cac3a089968b59f515fbd9dfec (patch) | |
| tree | 951fefd97a6318206c302edc606e7a5c046f0671 /src/ui/dialog/filedialog.cpp | |
| parent | updated Slovak translation in trunk (diff) | |
| download | inkscape-b8881635446b32cac3a089968b59f515fbd9dfec.tar.gz inkscape-b8881635446b32cac3a089968b59f515fbd9dfec.zip | |
add import from ocal feature
(bzr r3476)
Diffstat (limited to 'src/ui/dialog/filedialog.cpp')
| -rw-r--r-- | src/ui/dialog/filedialog.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/dialog/filedialog.cpp b/src/ui/dialog/filedialog.cpp index 63bb98b4b..88ba32679 100644 --- a/src/ui/dialog/filedialog.cpp +++ b/src/ui/dialog/filedialog.cpp @@ -94,6 +94,21 @@ FileSaveDialog *FileSaveDialog::create(Gtk::Window& parentWindow, return dialog; } +//######################################################################### +//### F I L E I M P O R T F R O M O C A L +//######################################################################### + +/** + * Public factory. Called by file.cpp. + */ +FileImportFromOCALDialog *FileImportFromOCALDialog::create(Gtk::Window &parentWindow, + const Glib::ustring &path, + FileDialogType fileTypes, + const Glib::ustring &title) +{ + FileImportFromOCALDialog *dialog = new FileImportFromOCALDialogImplGtk(parentWindow, path, fileTypes, title); + return dialog; +} } //namespace Dialog @@ -101,6 +116,7 @@ FileSaveDialog *FileSaveDialog::create(Gtk::Window& parentWindow, } //namespace Inkscape + /* Local Variables: mode:c++ |
