Changeset 712
- Timestamp:
- 08/22/07 15:13:43 (16 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
common/project.cpp (modified) (1 diff)
-
common/project.h (modified) (1 diff)
-
win/Piecebar.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/common/project.cpp
r711 r712 7350 7350 } 7351 7351 7352 void Project::BeginPieceDrop( PieceInfo* Info)7352 void Project::BeginPieceDrop() 7353 7353 { 7354 7354 m_PreviousAction = m_nCurAction; -
trunk/common/project.h
r711 r712 104 104 void DeleteContents(bool bUndo); // delete doc items etc 105 105 void LoadDefaults(bool cameras); 106 void BeginPieceDrop( PieceInfo* Info);106 void BeginPieceDrop(); 107 107 108 108 void CreateImages(Image* images, int width, int height, unsigned short from, unsigned short to, bool hilite); -
trunk/win/Piecebar.cpp
r700 r712 456 456 else if (Notify->hdr.code == TVN_BEGINDRAG) 457 457 { 458 PieceInfo* Info = (PieceInfo*)Notify->itemNew.lParam; 459 460 if (Info != NULL) 458 if (Notify->itemNew.lParam) 461 459 { 462 460 m_PiecesTree.SelectItem(Notify->itemNew.hItem); 463 461 464 lcGetActiveProject()->BeginPieceDrop( Info);462 lcGetActiveProject()->BeginPieceDrop(); 465 463 466 464 // Force a cursor update.
