~writer-devs/writer/trunk

« back to all changes in this revision

Viewing changes to src/MainWindow.vala

  • Committer: Tuur Dutoit
  • Date: 2014-10-26 10:41:33 UTC
  • Revision ID: me@tuurdutoit.be-20141026104133-gzvzgh1m6ntrrc9o
Renamed Editor to TextEditor and EditorToolBar to TextToolBar

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    public class MainWindow : Gtk.Window {
35
35
        
36
36
        private WriterApp app;
37
 
        private Editor editor;
 
37
        private TextEditor editor;
38
38
        private Widgets.TitleBar title_bar;
39
39
        public Widgets.EditorView editor_view;
40
40
        private Widgets.WelcomeView welcome_view;
45
45
        private Zeitgeist.DataSourceRegistry registry;
46
46
#endif
47
47
        
48
 
        public MainWindow (WriterApp app, Editor editor) {
 
48
        public MainWindow (WriterApp app, TextEditor editor) {
49
49
            this.app = app;
50
50
            this.editor = editor;
51
51
            this.set_application (app);