[Igarden-commit] Garden/source/Document CDatabasePanel.cpp, 1.4.2.28, 1.4.2.29
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-05-17 21:15:24
|
Update of /cvsroot/igarden/Garden/source/Document In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11325/source/Document Modified Files: Tag: Release_branch_v1 CDatabasePanel.cpp Log Message: Remove some obsolete code Index: CDatabasePanel.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Document/CDatabasePanel.cpp,v retrieving revision 1.4.2.28 retrieving revision 1.4.2.29 diff -C2 -d -r1.4.2.28 -r1.4.2.29 *** CDatabasePanel.cpp 17 May 2008 20:44:21 -0000 1.4.2.28 --- CDatabasePanel.cpp 17 May 2008 21:15:27 -0000 1.4.2.29 *************** *** 255,270 **** switch (msg) { - #if 0 - case KXGKeyEvent: - low = arg & 0xffff; - high = (arg >> 16L) & 0xffff; - if(high == 0 && low == '\t') - { - panel->_deferedNext = true; - rgd->Exit(1); - } - return kIgnored; - #endif - case KXGGetMenuStatus: case KXGDoMenuCommand: --- 255,258 ---- *************** *** 725,728 **** --- 713,719 ---- /// Setup // + /// Common code to create a database panel in the given window. + /// ***This is where the columns are added. + // CGardenPanel* CDatabasePanel::Setup(XGWindow* win, XGView* newView, bool isDocument ) |