I am trying to figure out to show the dialpad with a given number in Blackberry 10 Cascades Beta 4 SDK.
Right now, I have this code:
bb::system::Phone::smileytongue:hone phone;
phone.requestDialpad(number, bb::system::Phone::LineType::Cellular);
Which causes this error: Cannot open phone pps object
So, I looked up about a pps object, and found this page.
Is that what I need to use, if so how do I use it? Or do I use something else, and how do I use that?
(I did by the way add "LIBS += -lbb"
to my .pro file to be able to use a pps object, but that change alone did not fix it).