Ignore:
Timestamp:
Mar 6, 2007, 9:07:54 PM (18 years ago)
Author:
cinc
Message:

More WC2007 patches for drag and drop implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/class_c/wpfilesystem.c

    r206 r243  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    9191    }
    9292
    93   /* We area folder somwhere in the chain */
     93  /* We are a folder somwhere in the chain */
    9494  nomRetval=WPFileSystem_wpQueryFileName((WPFileSystem*)wpParent, bFullPath, NULLHANDLE);
    9595  nomPath=NOMPathNew();
     
    9999}
    100100
     101
     102NOM_Scope CORBA_boolean NOMLINK impl_WPFileSystem_wpMoveObject(WPFileSystem* nomSelf,
     103                                                               const PWPFolder wpTargetFolder,
     104                                                               CORBA_Environment *ev)
     105{
     106/* WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); */
     107
     108  return WPFileSystem_wpMoveObject_parent(nomSelf, wpTargetFolder,  ev);
     109  return FALSE;
     110}
     111
     112
     113NOM_Scope PWPObject NOMLINK impl_WPFileSystem_wpCopyObject(WPFileSystem* nomSelf,
     114                                                           const PWPFolder wpTargetFolder,
     115                                                           const CORBA_boolean fLock,
     116                                                           CORBA_Environment *ev)
     117{
     118/* WPFileSystemData* nomThis=WPFileSystemGetData(nomSelf); */
     119
     120  return WPFileSystem_wpCopyObject_parent(nomSelf, wpTargetFolder, fLock, ev);
     121
     122  return NULLHANDLE;
     123}
     124
Note: See TracChangeset for help on using the changeset viewer.