X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=shell%2Fev-properties-license.c;h=c29353caab72298c1f32a0836b9d7e17bf6d6cc5;hb=53eea4249bc0255faa1bf51cb4fb455db4cc69f1;hp=f7c7233a38c3a8fdb9ccf52ade125d1adc5cb078;hpb=fbc5a66df0f65fa6f06d2d8496794512033a9ef3;p=evince.git diff --git a/shell/ev-properties-license.c b/shell/ev-properties-license.c index f7c7233a..c29353ca 100644 --- a/shell/ev-properties-license.c +++ b/shell/ev-properties-license.c @@ -16,7 +16,7 @@ * * 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 "config.h" @@ -84,16 +84,15 @@ get_license_uri_widget (const gchar *uri) "ellipsize", PANGO_ELLIPSIZE_END, NULL); -#if GTK_CHECK_VERSION (2, 17, 0) checked_uri = g_uri_parse_scheme (uri); if (checked_uri) { markup = g_markup_printf_escaped ("%s", uri, uri); gtk_label_set_markup (GTK_LABEL (label), markup); g_free (markup); g_free (checked_uri); - } else -#endif + } else { gtk_label_set_text (GTK_LABEL (label), uri); + } return label; }