Changeset dc5413 for molecuilder/src/UIElements
- Timestamp:
- Feb 26, 2010, 1:57:01 PM (16 years ago)
- Children:
- 78b9d9, d50264
- Parents:
- e65cc0 (diff), 45cc89 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- molecuilder/src/UIElements
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/TextWindow.cpp
re65cc0 rdc5413 36 36 #include "Menu/DisplayMenuItem.hpp" 37 37 #include "Menu/SubMenuItem.hpp" 38 #include "UIElements/TextStatusIndicator.hpp" 38 39 #include "Actions/MethodAction.hpp" 39 40 #include "Actions/ErrorAction.hpp" … … 97 98 98 99 editMoleculesMenu->addDefault(returnItem); 100 101 // Add status indicators etc... 102 103 statusIndicator = new TextStatusIndicator(); 99 104 } 100 105 … … 105 110 delete returnFromEditMoleculeAction; 106 111 delete moleculeView; 112 delete statusIndicator; 107 113 delete main_menu; 108 114 } -
molecuilder/src/UIElements/TextWindow.hpp
re65cc0 rdc5413 15 15 class oldmenu; 16 16 class StringView; 17 class TextStatusIndicator; 17 18 18 19 class TextWindow : public MainWindow … … 31 32 // all views that are contained in the main Menu 32 33 StringView *moleculeView; 34 TextStatusIndicator *statusIndicator; 33 35 34 36 // This class still contains a lot of scattered functionality
Note:
See TracChangeset
for help on using the changeset viewer.