Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libnemo-private/nemo-program-choosing.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ nemo_launch_application_for_mount (GAppInfo *app_info,
* parameter. Provide a parent window for error dialogs.
*
* @application: The application to be launched.
* @uris: The files whose locations should be passed as a parameter to the application.
* @files: The files whose locations should be passed as a parameter to the application.
* @parent_window: A window to use as the parent for any error dialogs.
*/
void
Expand Down
16 changes: 11 additions & 5 deletions src/nemo-mime-actions.c
Original file line number Diff line number Diff line change
Expand Up @@ -2232,11 +2232,15 @@ activation_start_mountables (ActivateParameters *parameters)

/**
* nemo_mime_activate_files:
* @parent_window: The window to parent dialogs on.
* @slot: The window slot to open locations in.
* @files: A GList of NemoFiles to activate.
* @launch_directory: Working directory for launching executable files, or NULL.
* @flags: How the location should be opened.
* @user_confirmation: Whether to request confirmation before opening multiple windows or tabs.
*
* Activate a list of files. Each one might launch with an application or
* with a component. This is normally called only by subclasses.
* @view: FMDirectoryView in question.
* @files: A GList of NemoFiles to activate.
*
**/
void
Expand Down Expand Up @@ -2313,12 +2317,14 @@ nemo_mime_activate_files (GtkWindow *parent_window,

/**
* nemo_mime_activate_file:
* @parent_window: The window to parent dialogs on.
* @slot: The window slot to open locations in.
* @file: A NemoFile representing the file in this view to activate.
* @launch_directory: Working directory for launching executable files, or NULL.
* @flags: How the location should be opened.
*
* Activate a file in this view. This might involve switching the displayed
* location for the current window, or launching an application.
* @view: FMDirectoryView in question.
* @file: A NemoFile representing the file in this view to activate.
* @use_new_window: Should this item be opened in a new window?
*
**/

Expand Down
Loading