diff options
author | Perberos <[email protected]> | 2012-07-31 21:05:06 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2012-07-31 21:05:06 -0300 |
commit | 7066f9a921a6695ea9c8e2dae2c6fd230add6baa (patch) | |
tree | efcbc3f84901908b0965cc6f535f01836cee7c1a /src/math-preferences.c | |
parent | 88ab1796d36b39f08d9cd6156fdd5b5d6df19dd1 (diff) | |
download | mate-calc-7066f9a921a6695ea9c8e2dae2c6fd230add6baa.tar.bz2 mate-calc-7066f9a921a6695ea9c8e2dae2c6fd230add6baa.tar.xz |
fixing address issue of fsf
Diffstat (limited to 'src/math-preferences.c')
-rw-r--r-- | src/math-preferences.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/math-preferences.c b/src/math-preferences.c index c846523..ab651df 100644 --- a/src/math-preferences.c +++ b/src/math-preferences.c @@ -12,8 +12,8 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA. */ #include <glib/gi18n.h> @@ -41,7 +41,7 @@ struct MathPreferencesDialogPrivate MathPreferencesDialog * math_preferences_dialog_new(MathEquation *equation) -{ +{ return g_object_new (math_preferences_get_type(), "equation", equation, NULL); } @@ -211,7 +211,7 @@ word_size_cb(MathEquation *equation, GParamSpec *spec, MathPreferencesDialog *di static void angle_unit_cb(MathEquation *equation, GParamSpec *spec, MathPreferencesDialog *dialog) { - set_combo_box_from_int(GET_WIDGET(dialog->priv->ui, "angle_unit_combobox"), math_equation_get_angle_units(equation)); + set_combo_box_from_int(GET_WIDGET(dialog->priv->ui, "angle_unit_combobox"), math_equation_get_angle_units(equation)); } |