Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 24403
Collapse All | Expand All

(-)/var/tmp/portage/mvideo-0.89.99/work/mvideo-0.89.99/src/Gui/menu.cs.old (-1 / +1 lines)
Lines 350-356 Link Here
350
			TextView license = new TextView();
350
			TextView license = new TextView();
351
			license.WrapMode = WrapMode.None;
351
			license.WrapMode = WrapMode.None;
352
			try{
352
			try{
353
				FileStream f = new FileStream(file, FileMode.Open);
353
				FileStream f = new FileStream(file, FileMode.Open, FileAccess.Read);
354
				StreamReader s = new StreamReader(f);
354
				StreamReader s = new StreamReader(f);
355
				license.Buffer.SetText(s.ReadToEnd());
355
				license.Buffer.SetText(s.ReadToEnd());
356
			} catch (Exception ex){
356
			} catch (Exception ex){

Return to bug 24403