Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 6, 2011, 8:15:38 AM (13 years ago)
Author:
dafrick
Message:

Adherence to styleguide.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/data/gui/scripts/DockingDialog.lua

    r8643 r8700  
    99     --button are arranged in a 1x2 matrix
    1010    P:setButton(1, 1, {
    11             ["button"] = winMgr:getWindow("orxonox/DockingDockButton"),
     11            ["button"] = winMgr:getWindow("orxonox/Docking/DockButton"),
    1212            ["callback"]  = P.dockButton_clicked
    1313    })
    1414
    1515    P:setButton(1, 2, {
    16             ["button"] = winMgr:getWindow("orxonox/DockingCancelButton"),
     16            ["button"] = winMgr:getWindow("orxonox/Docking/CancelButton"),
    1717            ["callback"]  = P.cancelButton_clicked
    1818    })
     
    3737    end
    3838
    39     local listbox = CEGUI.toListbox(winMgr:getWindow("orxonox/DockingDocks"))
     39    local listbox = CEGUI.toListbox(winMgr:getWindow("orxonox/Docking/Docks"))
    4040    listbox:resetList()
    4141
     
    5151
    5252function P.dockButton_clicked(e)
    53     local listbox = CEGUI.toListbox(winMgr:getWindow("orxonox/DockingDocks"))
     53    local listbox = CEGUI.toListbox(winMgr:getWindow("orxonox/Docking/Docks"))
    5454    local choice = listbox:getFirstSelectedItem()
    5555    if choice ~= nil then
Note: See TracChangeset for help on using the changeset viewer.