[vlc-devel] commit: Use @see instead of @ref ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Feb 22 15:34:12 CET 2009
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Feb 22 11:57:15 2009 +0200| [8ebc7def16c41602c5462a1483026cc1a6550ba8] | committer: Rémi Denis-Courmont
Use @see instead of @ref
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8ebc7def16c41602c5462a1483026cc1a6550ba8
---
bindings/cil/src/instance.cs | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/bindings/cil/src/instance.cs b/bindings/cil/src/instance.cs
index 6692a7e..901c440 100644
--- a/bindings/cil/src/instance.cs
+++ b/bindings/cil/src/instance.cs
@@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC
* First, you need to create a VLC instance. This will load and setup the
* native VLC runtime, the VLC configuration, the list of available plugins,
* the platform adaptation and the VLC log messages and objects subsystems
- * (see \ref VideoLAN::LibVLC::VLC for details).
- *
* @code
* using System;
* using VideoLAN.LibVLC;
@@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC
* string[] args = new string[]{ "-v", "--ignore-config" };
* VLC vlc = new VLC(args);
* @endcode
+ * @see VideoLAN::LibVLC::VLC
*
* To play media, you need a media and a player.
- * See the \ref VideoLAN::LibVLC::Media
- * and \ref VideoLAN::LibVLC::Player classes for details.
* @code
* Media media = new Media(vlc, "http://www.example.com/video.ogv");
* Player player = new Player(media);
* player.Play();
* @endcode
+ * @see VideoLAN::LibVLC::Media @see VideoLAN::LibVLC::Player
*
* All these objects use unmanaged resources.
* They all implement the IDisposeable interface.
More information about the vlc-devel
mailing list