~and471/+junk/lightdm-picker

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: rugby471 at gmail
  • Date: 2011-05-23 07:12:50 UTC
  • Revision ID: rugby471@gmail.com-20110523071250-1mclqq168pqx94gv
remove seed stuff so Robert Ancell can test :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
public class LightDMPicker : Gtk.Window {
2
2
 
3
3
    private const string HOME_URL = "file:////home/andrew/Software/Projects/lightdm-picker/data/index.html";
4
 
    private SeedKit.View web_view;
 
4
    private WebKit.WebView web_view;
5
5
    private Gtk.ScrolledWindow scrolled;
6
6
    
7
7
    private WebKit.WebView inspector_view;
18
18
    }
19
19
 
20
20
    private void create_widgets() {
21
 
        this.web_view = new SeedKit.View();
 
21
        this.web_view = new WebKit.WebView();
22
22
        
23
23
        this.scrolled = new Gtk.ScrolledWindow(null, null);
24
24