~writer-devs/writer/trunk

« back to all changes in this revision

Viewing changes to src/Writer.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:
29
29
    public class WriterApp : Granite.Application {
30
30
        
31
31
        private MainWindow window;
32
 
        private Editor editor;
 
32
        private TextEditor editor;
33
33
        
34
34
        construct {
35
35
            program_name = "Writer";
78
78
        //the application started
79
79
        public override void activate () {
80
80
            if (get_windows () == null) {
81
 
                editor = new Editor ();
 
81
                editor = new TextEditor ();
82
82
                window = new MainWindow (this, editor);
83
83
                window.show_welcome ();
84
84
                window.show_all ();