]> git.sesse.net Git - vlc/blobdiff - modules/access/screen/screen.c
codecleanup: Replace input_Item by input_item.
[vlc] / modules / access / screen / screen.c
index 2b1a19f676dbda8abcede7944bb22907f648d59d..6f92341657e05a0b5ac8a1a72a593b7201b2c198 100644 (file)
@@ -29,7 +29,7 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
 #include <vlc_plugin.h>
 #include "screen.h"
 
 
 #define WIDTH_TEXT N_( "Subscreen width" )
 #define WIDTH_LONGTEXT N_( \
-    "Subscreen width." )
+    "Subscreen width" )
 
 #define HEIGHT_TEXT N_( "Subscreen height" )
 #define HEIGHT_LONGTEXT N_( \
-    "Subscreen height."  )
+    "Subscreen height"  )
 
 #define FOLLOW_MOUSE_TEXT N_( "Follow the mouse" )
 #define FOLLOW_MOUSE_LONGTEXT N_( \
-    "Follow the mouse when capturing a subscreen" )
+    "Follow the mouse when capturing a subscreen." )
 #endif
 
 static int  Open ( vlc_object_t * );