1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 #include <QDebug> |
|
18 #include <smcmockclassincludes.h> |
|
19 #include "psuiutils.h" |
|
20 |
|
21 // ============================ MEMBER FUNCTIONS =============================== |
|
22 |
|
23 // ----------------------------------------------------------------------------- |
|
24 // PsUiUtils::errorCodeTextMapping |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 bool PsUiUtils::errorCodeTextMapping( |
|
28 const int errorcode, |
|
29 QString & errorText ) |
|
30 { |
|
31 SMC_MOCK_METHOD2( bool, const int, errorcode, |
|
32 QString &, errorText ) |
|
33 } |
|
34 |
|
35 |
|
36 // ----------------------------------------------------------------------------- |
|
37 // PsUiSettingsWrapper::PsUiSettingsWrapper |
|
38 // ----------------------------------------------------------------------------- |
|
39 // |
|
40 PsUiSettingsWrapper::PsUiSettingsWrapper( |
|
41 QObject * parent ) |
|
42 //: |
|
43 //QObject( /*parent*/ ) |
|
44 { |
|
45 |
|
46 } |
|
47 |
|
48 |
|
49 // ----------------------------------------------------------------------------- |
|
50 // PsUiSettingsWrapper::~PsUiSettingsWrapper |
|
51 // ----------------------------------------------------------------------------- |
|
52 // |
|
53 PsUiSettingsWrapper::~PsUiSettingsWrapper( ) |
|
54 { |
|
55 |
|
56 } |
|
57 |
|
58 |
|
59 // ----------------------------------------------------------------------------- |
|
60 // PsUiSettingsWrapper::isFeatureCallWaitingDistiquishNotProvisionedEnabled |
|
61 // ----------------------------------------------------------------------------- |
|
62 // |
|
63 bool PsUiSettingsWrapper::isFeatureCallWaitingDistiquishNotProvisionedEnabled( ) |
|
64 { |
|
65 SMC_MOCK_METHOD0( bool ) |
|
66 } |
|
67 |
|
68 |
|
69 // ----------------------------------------------------------------------------- |
|
70 // PsUiSettingsWrapper::isPhoneOffline |
|
71 // ----------------------------------------------------------------------------- |
|
72 // |
|
73 bool PsUiSettingsWrapper::isPhoneOffline( ) const |
|
74 { |
|
75 SMC_MOCK_METHOD0( bool ) |
|
76 } |
|
77 |
|
78 |
|
79 // ----------------------------------------------------------------------------- |
|
80 // PsUiSettingsWrapper::numberGroupingSupported |
|
81 // ----------------------------------------------------------------------------- |
|
82 // |
|
83 bool PsUiSettingsWrapper::numberGroupingSupported( ) const |
|
84 { |
|
85 SMC_MOCK_METHOD0( bool ) |
|
86 } |
|
87 |
|
88 |
|