summaryrefslogtreecommitdiff
path: root/media-video/projectx/files/projectx-0.91.0.10-bl2.patch
blob: 3799c15e19cb852c439247e76d5f881ea82c5980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- Project-X/src/net/sourceforge/dvb/projectx/gui/Html.java	2006-11-25 22:28:52.000000000 +0100
+++ Project-X/src/net/sourceforge/dvb/projectx/gui/Html.java	2007-06-10 13:37:59.000000000 +0200
@@ -159,9 +159,10 @@
 		{
 			try 
 			{
-				BrowserLauncher.openURL(u.toString());
+				BrowserLauncher launcher = new BrowserLauncher();
+				launcher.openURLinBrowser(u.toString());
 			} 
-			catch (IOException e) 
+			catch (Exception e) 
 			{
 				Common.setMessage(Resource.getString("msg.browser.launcher.error") + " " + e);
 			}