]> git.saurik.com Git - wxWidgets.git/blobdiff - user/wxFile/dirctrl.cpp
Added wxDbTable::SetOrderByColNums() function
[wxWidgets.git] / user / wxFile / dirctrl.cpp
index 98b18d709c2cd378d62909e86aacfa41c052cf0a..16ad3756424635e38f971fb588ca48bf808d0315 100644 (file)
@@ -33,10 +33,8 @@ wxDirInfo::wxDirInfo( const wxString &path )
   if (m_path == "/home")
   {
     m_name = "My Home";
-    m_path += "/";
-    char buf[300];
-    wxGetHomeDir( buf );
-    m_path = buf;
+    m_path = "";
+    wxGetHomeDir( &m_path );
   }
   else
   if (m_path == "/proc") m_name = "Info Filesystem";
@@ -97,7 +95,7 @@ wxDirCtrl::wxDirCtrl(wxWindow *parent, const wxWindowID id, const wxString &WXUN
   item.m_children = 1;
   m_rootId = InsertItem( 0, item );
   
-  SetDropTarget( new wxFileDropTarget() );
+//  SetDropTarget( new wxFileDropTarget() );
 };
 
 void wxDirCtrl::OnExpandItem( const wxTreeEvent &event )