ekiga r5961 - in trunk: . src/devices



Author: dsandras
Date: Mon Feb 11 19:38:00 2008
New Revision: 5961
URL: http://svn.gnome.org/viewvc/ekiga?rev=5961&view=rev

Log:
Adapted to the new OPAL API.


Modified:
   trunk/ChangeLog
   trunk/src/devices/fakevideoinput.h
   trunk/src/devices/videooutput.cpp
   trunk/src/devices/videooutput.h

Modified: trunk/src/devices/fakevideoinput.h
==============================================================================
--- trunk/src/devices/fakevideoinput.h	(original)
+++ trunk/src/devices/fakevideoinput.h	Mon Feb 11 19:38:00 2008
@@ -193,7 +193,7 @@
   int rgb_increment;
   int pos;
   int increment;
-  PStringList GetDeviceNames() const
+  PStringArray GetDeviceNames() const
   { return GetInputDeviceNames(); }
 
   PAdaptiveDelay m_Pacing;

Modified: trunk/src/devices/videooutput.cpp
==============================================================================
--- trunk/src/devices/videooutput.cpp	(original)
+++ trunk/src/devices/videooutput.cpp	Mon Feb 11 19:38:00 2008
@@ -61,7 +61,7 @@
       }
     
     
-    virtual PStringList GetDeviceNames(int) const 
+    virtual PStringArray GetDeviceNames(int) const 
       { 
 	return PStringList("EKIGA"); 
       }
@@ -112,9 +112,9 @@
 
 }
 
-PStringList PVideoOutputDevice_EKIGA::GetDeviceNames() const
+PStringArray PVideoOutputDevice_EKIGA::GetDeviceNames() const
 {
-  PStringList  devlist;
+  PStringArray devlist;
   devlist.AppendString(GetDeviceName());
 
   return devlist;

Modified: trunk/src/devices/videooutput.h
==============================================================================
--- trunk/src/devices/videooutput.h	(original)
+++ trunk/src/devices/videooutput.h	Mon Feb 11 19:38:00 2008
@@ -77,7 +77,7 @@
    * BEHAVIOR     :  Return a list of all of the drivers available.
    * PRE          :  /
    */
-  virtual PStringList GetDeviceNames() const;
+  virtual PStringArray GetDeviceNames() const;
 
 
   /* DESCRIPTION  :  /



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]