aboutsummaryrefslogtreecommitdiff
path: root/deskutils/fusenshi/files/patch-src_wnd_propertydialog.cpp
blob: 0cbe0cba901b59123206cdfc9d9972f895630584 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- src/wnd/propertydialog.cpp.orig	2010-04-07 17:27:39.000000000 +0200
+++ src/wnd/propertydialog.cpp	2010-04-07 17:28:12.000000000 +0200
@@ -471,10 +471,10 @@ void PropertyDialog::on_fontname_clicked
     fontdlg.set_transient_for(*this);
     fontdlg.get_apply_button()->hide();
     
-    fontdlg.get_font_selection()->set_font_name(m_cFontName.get_text());
+    fontdlg.set_font_name(m_cFontName.get_text());
     
     if (Gtk::RESPONSE_OK == fontdlg.run()) {
-        m_cFontName.set_text(fontdlg.get_font_selection()->get_font_name());
+        m_cFontName.set_text(fontdlg.get_font_name());
     }
 }