]> git.sesse.net Git - vlc/blobdiff - mozilla/vlcplugin.h
Removes trailing spaces. Removes tabs.
[vlc] / mozilla / vlcplugin.h
index 4ff0af525471274c89dac19f8debfdbe15fed04c..c2523bebd95112395f6ff769d510efb0228222e1 100644 (file)
 class VlcPlugin
 {
 public:
-             VlcPlugin( NPP, uint16 ); 
+             VlcPlugin( NPP, uint16 );
     virtual ~VlcPlugin();
 
     NPError             init(int argc, char* const argn[], char* const argv[]);
-    libvlc_instance_t*  getVLC() 
+    libvlc_instance_t*  getVLC()
                             { return libvlc_instance; };
     NPP                 getBrowser()
                             { return p_browser; };
     char*               getAbsoluteURL(const char *url);
-    const NPWindow*     getWindow()
-                            { return &npwindow; };
-    void                setWindow(const NPWindow *window)
-                            { npwindow = *window; };
+    NPWindow&           getWindow()
+                            { return npwindow; };
+    void                setWindow(const NPWindow &window)
+                            { npwindow = window; };
 
     NPClass*            getScriptClass()
                             { return p_scriptClass; };