cec: renamed GetOSDName() -> GetDeviceOSDName()
[deb_libcec.git] / src / LibCecSharp / LibCecSharp.cpp
index 021b19a7cb7ba6ed1cc8751a250da9713d1938e5..673739a71d9e4ea1affcadabfa5058ad5b69dca9 100644 (file)
@@ -676,9 +676,9 @@ public:
     return m_libCec->SendKeyRelease((cec_logical_address)destination, wait);
   }
 
-  String ^ GetOSDName(CecLogicalAddress logicalAddress)
+  String ^ GetDeviceOSDName(CecLogicalAddress logicalAddress)
   {
-    cec_osd_name osd = m_libCec->GetOSDName((cec_logical_address) logicalAddress);
+    cec_osd_name osd = m_libCec->GetDeviceOSDName((cec_logical_address) logicalAddress);
     return gcnew String(osd.name);
   }