diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-04-14 14:10:45 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-04-14 14:10:45 +0000 |
| commit | ad33db6e13cd1aab4b26a4a4732607899323cadd (patch) | |
| tree | 84a95057b19297de53697762874f226ca99fe027 /src/ui/dialog/export.cpp | |
| parent | more c++ification in export dialog / fixing warning for in case of new and un... (diff) | |
| download | inkscape-ad33db6e13cd1aab4b26a4a4732607899323cadd.tar.gz inkscape-ad33db6e13cd1aab4b26a4a4732607899323cadd.zip | |
export dialog: type fix
(bzr r11246)
Diffstat (limited to 'src/ui/dialog/export.cpp')
| -rw-r--r-- | src/ui/dialog/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp index f28757734..060a10f63 100644 --- a/src/ui/dialog/export.cpp +++ b/src/ui/dialog/export.cpp @@ -351,7 +351,7 @@ void Export::setTargetDesktop(SPDesktop *desktop) subselChangedConn = desktop->connectToolSubselectionChanged(sigc::hide(sigc::mem_fun(*this, &Export::onSelectionChanged))); //// Must check flags, so can't call widget_setup() directly. - selectModifiedConn = desktop->selection->connectModified(sigc::hide<0>(sigc::mem_fun(*this, &Export::onSelectioModified))); + selectModifiedConn = desktop->selection->connectModified(sigc::hide<0>(sigc::mem_fun(*this, &Export::onSelectionModified))); } //widget_setup(); } @@ -607,7 +607,7 @@ void Export::onSelectionChanged() updateCheckbuttons (); } -void Export::onSelectioModified ( guint /*flags*/ ) +void Export::onSelectionModified ( guint /*flags*/ ) { switch (current_key) { case SELECTION_DRAWING: |
