Changeset 366:ddeb70867358 for source


Ignore:
Timestamp:
Mar 13, 2016, 2:49:31 PM (8 years ago)
Author:
Evgeny Stambulchik <Evgeny.Stambulchik@…>
Branch:
default
Phase:
public
Message:

Switched to QX-5.0.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/class/pf/Application.js

    r365 r366  
    19741974            submenu = new qx.ui.menu.Menu;
    19751975            this.doc.add(submenu);
    1976             qc = new qx.ui.core.Command("Ctrl+O");
     1976            qc = new qx.ui.command.Command("Ctrl+O");
    19771977            qc.addListener("execute", this.openCB, this);
    19781978            btn = new qx.ui.menu.Button("Open...", "pf/image/open.png", qc);
    19791979            submenu.add(btn);
    1980             qc = new qx.ui.core.Command("Ctrl+S");
     1980            qc = new qx.ui.command.Command("Ctrl+S");
    19811981            qc.addListener("execute", this.saveConfigCB, this);
    19821982            btn = new qx.ui.menu.Button("Save", "pf/image/save.png", qc);
     
    19861986            submenu.add(btn);
    19871987            submenu.add(new qx.ui.menu.Separator);
    1988             qc = new qx.ui.core.Command("Ctrl+P");
     1988            qc = new qx.ui.command.Command("Ctrl+P");
    19891989            qc.addListener("execute", function(ev) {
    19901990                window.print();
     
    19931993            submenu.add(btn);
    19941994            submenu.add(new qx.ui.menu.Separator);
    1995             qc = new qx.ui.core.Command("Ctrl+R");
     1995            qc = new qx.ui.command.Command("Ctrl+R");
    19961996            qc.addListener("execute", function(ev) {
    19971997                    this.restart(false);
     
    20002000            submenu.add(btn);
    20012001            submenu.add(new qx.ui.menu.Separator);
    2002             qc = new qx.ui.core.Command("Ctrl+Q");
     2002            qc = new qx.ui.command.Command("Ctrl+Q");
    20032003            qc.addListener("execute", function(ev) {
    20042004                    this.quit(false);
     
    20822082           
    20832083            submenu.add(new qx.ui.menu.Separator);
    2084             qc = new qx.ui.core.Command("Ctrl+W");
     2084            qc = new qx.ui.command.Command("Ctrl+W");
    20852085            qc.addListener("execute", this.loadWikiCB, this);
    20862086            btn = new qx.ui.menu.Button("Load Wikipedia Article",
     
    20932093
    20942094            submenu.add(new qx.ui.menu.Separator);
    2095             qc = new qx.ui.core.Command("Ctrl+L");
     2095            qc = new qx.ui.command.Command("Ctrl+L");
    20962096            qc.addListener("execute", this.drawCB, this);
    20972097            btn = new qx.ui.menu.Button("Redraw Plot",
     
    21132113            submenu = new qx.ui.menu.Menu;
    21142114            this.doc.add(submenu);
    2115             qc = new qx.ui.core.Command("F1");
     2115            qc = new qx.ui.command.Command("F1");
    21162116            qc.addListener("execute", function(ev) {
    21172117                    var url = "resource/pf/html/ug.html";
Note: See TracChangeset for help on using the changeset viewer.