diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-04-05 13:44:35 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-04-05 13:44:35 +0000 |
| commit | 9ac1f9facac5ea2eecbbeab3d42c93e0eb281077 (patch) | |
| tree | 57e6cfaf8f3621e400eeae6b0d2baa98b122018e /src/widgets/font-selector.cpp | |
| parent | Extract and display ligatures in a font. (diff) | |
| download | inkscape-9ac1f9facac5ea2eecbbeab3d42c93e0eb281077.tar.gz inkscape-9ac1f9facac5ea2eecbbeab3d42c93e0eb281077.zip | |
Code cleanup.
Diffstat (limited to 'src/widgets/font-selector.cpp')
| -rw-r--r-- | src/widgets/font-selector.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/widgets/font-selector.cpp b/src/widgets/font-selector.cpp index bb3df93f0..532622bb0 100644 --- a/src/widgets/font-selector.cpp +++ b/src/widgets/font-selector.cpp @@ -33,7 +33,7 @@ struct SPFontSelector { GtkBox hbox; - unsigned int block_emit : 1; + bool block_emit; GtkWidget *family; GtkWidget *style; @@ -439,7 +439,6 @@ void sp_font_selector_set_fontspec (SPFontSelector *fsel, Glib::ustring fontspec std::pair<Glib::ustring, Glib::ustring> ui = font_lister->ui_from_fontspec( fontspec ); Glib::ustring family = ui.first; Glib::ustring style = ui.second; - Gtk::TreePath path; try { path = font_lister->get_row_for_font (family); @@ -449,10 +448,10 @@ void sp_font_selector_set_fontspec (SPFontSelector *fsel, Glib::ustring fontspec } // High light selected family and scroll so it is in view. - fsel->block_emit = TRUE; + fsel->block_emit = true; gtk_tree_selection_select_path (gtk_tree_view_get_selection (GTK_TREE_VIEW (fsel->family_treeview)), path.gobj()); gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (fsel->family_treeview), path.gobj(), NULL, TRUE, 0.5, 0.5); - fsel->block_emit = FALSE; // TODO: Should this be moved to the end? + fsel->block_emit = false; // TODO: Should this be moved to the end? // We don't need to get best style since this is only called on a new |
