]> www.fi.muni.cz Git - evince.git/blobdiff - shell/ev-properties-license.c
[dualscreen] fix crash on ctrl+w and fix control window closing
[evince.git] / shell / ev-properties-license.c
index f7c7233a38c3a8fdb9ccf52ade125d1adc5cb078..c29353caab72298c1f32a0836b9d7e17bf6d6cc5 100644 (file)
@@ -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 ("<a href=\"%s\">%s</a>", 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;
 }