414df0f7b7
* gscreen.c (panel_tree_drag_data_received): Perform drag and drop operations on the Tree.
15 строки
201 B
Plaintext
15 строки
201 B
Plaintext
#include <factory.idl>
|
|
|
|
module GNOME {
|
|
interface FileManagerFactory : Factory {
|
|
|
|
};
|
|
|
|
exception POSIX_ERROR {};
|
|
|
|
interface FileManager {
|
|
void chdir (in string dir)
|
|
raises (POSIX_ERROR);
|
|
};
|
|
};
|