]> git.saurik.com Git - wxWidgets.git/commitdiff
filedata implementation streamlined
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 23 Mar 2006 18:18:20 +0000 (18:18 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 23 Mar 2006 18:18:20 +0000 (18:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dnd.cpp

index ba746ab3e628fc7ce8e4a876b19e58d13684c922..3de09fe3e80e1925c1b6e4f9cbbd0960ea74b0d2 100644 (file)
@@ -189,6 +189,8 @@ bool wxDropTarget::GetData()
         FlavorFlags theFlags;
         UInt16 flavors;
         bool firstFileAdded = false;
         FlavorFlags theFlags;
         UInt16 flavors;
         bool firstFileAdded = false;
+        
+        wxString filenamesPassed ;
 
         CountDragItems( (DragReference)m_currentDrag, &items );
         for (UInt16 index = 1; index <= items; ++index)
 
         CountDragItems( (DragReference)m_currentDrag, &items );
         for (UInt16 index = 1; index <= items; ++index)
@@ -261,23 +263,13 @@ bool wxDropTarget::GetData()
 
                         case kDragFlavorTypeHFS:
                             {
 
                         case kDragFlavorTypeHFS:
                             {
-                                wxFileDataObject *fdo = dynamic_cast<wxFileDataObject*>(m_dataObject);
-                                wxASSERT( fdo != NULL );
-
-                                if ((theData != NULL) && (fdo != NULL))
+                                if (theData != NULL)
                                 {
                                     HFSFlavor* theFile = (HFSFlavor*) theData;
                                     wxString name = wxMacFSSpec2MacFilename( &theFile->fileSpec );
 
                                 {
                                     HFSFlavor* theFile = (HFSFlavor*) theData;
                                     wxString name = wxMacFSSpec2MacFilename( &theFile->fileSpec );
 
-                                    if ( !firstFileAdded )
-                                    {
-                                        // reset file list
-                                        fdo->SetData( 0, "" );
-                                        firstFileAdded = true;
-                                    }
-
                                     if (!name.IsEmpty())
                                     if (!name.IsEmpty())
-                                        fdo->AddFile( name );
+                                        filenamesPassed += name + wxT("\n");
                                 }
                             }
                             break;
                                 }
                             }
                             break;
@@ -293,6 +285,11 @@ bool wxDropTarget::GetData()
                 }
             }
         }
                 }
             }
         }
+        if ( filenamesPassed.Len() > 0 )
+        {
+            wxCharBuffer buf = filenamesPassed.fn_str();
+            m_dataObject->SetData( wxDataFormat( wxDF_FILENAME ) , strlen( buf ) , (const char*) buf );
+        }
     }
 
     return true;
     }
 
     return true;