aboutsummaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorPacketVideo CM <engbuild@pv.com>2010-03-02 16:25:59 -0800
committerPacketVideo CM <engbuild@pv.com>2010-03-02 16:25:59 -0800
commit1367c7262de737726a766e3141750696aa12b082 (patch)
tree28fe7153a2f938faf326aeea36db652df6ee94e8 /protocols
parentd9d6dddd5a78db093a1415e561219833a0a2ed6b (diff)
downloadopencore-1367c7262de737726a766e3141750696aa12b082.tar.gz
RIO-8711: Fix pv_config_selected.mk in opencore_value_add for 2way changes.
Diffstat (limited to 'protocols')
-rw-r--r--protocols/systems/3g-324m_pvterminal/common/include/pv_2way_h324m_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/systems/3g-324m_pvterminal/common/include/pv_2way_h324m_types.h b/protocols/systems/3g-324m_pvterminal/common/include/pv_2way_h324m_types.h
index 62b40267e..c44c8061d 100644
--- a/protocols/systems/3g-324m_pvterminal/common/include/pv_2way_h324m_types.h
+++ b/protocols/systems/3g-324m_pvterminal/common/include/pv_2way_h324m_types.h
@@ -216,7 +216,7 @@ class CPVUserInput: public HeapBase, public PVInterface
/**
* Virtual function to return the user input type
**/
- virtual UserInputType GetType() = 0;
+ virtual PV2WayUserInputType GetType() = 0;
// from PVInterface
void addRef()
@@ -278,7 +278,7 @@ class CPVUserInputDtmf : public CPVUserInput
OSCL_IMPORT_REF ~CPVUserInputDtmf() {};
// from CPVUserInput
- OSCL_IMPORT_REF UserInputType GetType()
+ OSCL_IMPORT_REF PV2WayUserInputType GetType()
{
return PV_DTMF;
}
@@ -288,7 +288,7 @@ class CPVUserInputDtmf : public CPVUserInput
*
* @returns Returns the input DTMF tone.
**/
- OSCL_IMPORT_REF const uint8 GetInput()
+ OSCL_IMPORT_REF uint8 GetInput()
{
return iInput;
}
@@ -374,7 +374,7 @@ class CPVUserInputAlphanumeric : public CPVUserInput
}
// from CPVUserInput
- OSCL_IMPORT_REF UserInputType GetType()
+ OSCL_IMPORT_REF PV2WayUserInputType GetType()
{
return PV_ALPHANUMERIC;
}