doc/cmd-signals.dox

Tue, 21 Jul 2020 22:38:23 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 21 Jul 2020 22:38:23 -0500
branch
release-2.x.y
changeset 40494
e95dec7ea729
parent 23557
73ca7c62ad11
permissions
-rw-r--r--

fix an issue where media elements were translated but the translation was not displayed in the ui

Make a string for translation that was previously marked by N_()

Reviewed at https://reviews.imfreedom.org/r/46/

/** @page cmd-signals Command Signals
  @signals
  	@signal cmd-added
	@signal cmd-removed
  @endsignals

  @see cmds.h

  @signaldef cmd-added
  	@signalproto
void (*cmd_added)(const char *command, PurpleCmdPriority priority,
                  PurpleCmdFlag flag);
	@endsignalproto
	@signaldesc
	 Emitted when a new command is added.
	@param command   The new command.
	@param priority  The priority of the new command.
	@param flag      The command flags.
  @endsignaldef

  @signaldef cmd-removed
  	@signalproto
void (*cmd_removed)(const char *command);
	@endsignalproto
	@signaldesc
	 Emitted when a command is removed.
	@param command   The removed command.
  @endsignaldef
*/

mercurial