author | hgs |
Mon, 04 Oct 2010 15:57:13 +0300 | |
changeset 51 | 12bc758d6a02 |
parent 46 | 2fa1fa551b0b |
permissions | -rw-r--r-- |
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
1 |
/* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
2 |
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
3 |
* All rights reserved. |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
4 |
* This component and the accompanying materials are made available |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
5 |
* under the terms of "Eclipse Public License v1.0" |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
6 |
* which accompanies this distribution, and is available |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
8 |
* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
9 |
* Initial Contributors: |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
10 |
* Nokia Corporation - initial contribution. |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
11 |
* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
12 |
* Contributors: |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
13 |
* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
14 |
* Description: |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
15 |
* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
16 |
* |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
17 |
*/ |
35 | 18 |
//Qt |
33 | 19 |
#include <HbApplication> |
35 | 20 |
#include <hbapplication.h> |
21 |
#include <hbmessagebox.h> |
|
46 | 22 |
#include <afactivitystorage.h> |
23 |
#include <afstorageglobals.h> |
|
35 | 24 |
|
25 |
// symbian |
|
26 |
#include <centralrepository.h> |
|
42 | 27 |
#include <coreapplicationuissdkcrkeys.h> |
35 | 28 |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
29 |
#include "satappmainhandler.h" |
33 | 30 |
#include "satappserverdispatcher.h" |
31 |
#include "satappmenuprovider.h" |
|
32 |
#include "satappinputprovider.h" |
|
33 |
#include "satapptoneprovider.h" |
|
34 |
#include "satapppopupprovider.h" |
|
35 |
#include "satappconstant.h" |
|
36 |
#include "satappconfirmprovider.h" |
|
37 |
||
38 |
// Activity ID for Sat Application |
|
39 |
const char *SATAPP_ACTIVITY_ID = "SIMServicesList"; |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
40 |
|
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
41 |
// ======== MEMBER FUNCTIONS ================================================== |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
42 |
|
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
43 |
// ---------------------------------------------------------------------------- |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
44 |
// SatAppMainHandler::SatAppMainHandler |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
45 |
// (Construtor). |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
46 |
// ---------------------------------------------------------------------------- |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
47 |
// |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
48 |
SatAppMainHandler::SatAppMainHandler(HbMainWindow &window, |
35 | 49 |
QObject */*parent*/): |
50 |
mOfflineWarningDlg(NULL) |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
51 |
{ |
33 | 52 |
qDebug("SATAPP: SatAppMainHandler::SatAppMainHandler >"); |
35 | 53 |
|
54 |
if(!isOffline()){ |
|
55 |
mServer = new SatAppServerDispatcher(this); |
|
56 |
mMenu = new SatAppMenuProvider(&window, this); |
|
57 |
mInput = new SatAppInputProvider(this); |
|
58 |
mTone = new SatAppToneProvider(this); |
|
59 |
mPopup = new SatAppPopupProvider(this); |
|
60 |
mConfirm = new SatAppConfirmProvider(this); |
|
61 |
initConnections(); |
|
62 |
} |
|
63 |
else{ |
|
64 |
showOfflineWarning(); |
|
65 |
} |
|
46 | 66 |
|
67 |
mActivityStorage = new AfActivityStorage(this); |
|
35 | 68 |
removeActivity(); |
33 | 69 |
|
70 |
qDebug("SATAPP: SatAppMainHandler::SatAppMainHandler <"); |
|
15
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
71 |
} |
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
72 |
|
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
73 |
// ---------------------------------------------------------------------------- |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
74 |
// SatAppMainHandler::~SatAppMainHandler |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
75 |
// (Destructor). |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
76 |
// ---------------------------------------------------------------------------- |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
77 |
// |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
78 |
SatAppMainHandler::~SatAppMainHandler() |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
79 |
{ |
35 | 80 |
qDebug("SATAPP: SatAppMainHandler::~SatAppMainHandler >"); |
81 |
delete mOfflineWarningDlg; |
|
82 |
qDebug("SATAPP: SatAppMainHandler::~SatAppMainHandler <"); |
|
33 | 83 |
} |
84 |
||
85 |
// ---------------------------------------------------------------------------- |
|
86 |
// Local override for connect-function |
|
87 |
// this method ENSURES that the connection is succesful. |
|
88 |
// ---------------------------------------------------------------------------- |
|
89 |
// |
|
90 |
void doConnect( |
|
91 |
const QObject *sender, |
|
92 |
const char *signal, |
|
93 |
const QObject *receiver, |
|
94 |
const char *member) |
|
95 |
{ |
|
96 |
bool ret = QObject::connect(sender, signal, |
|
97 |
receiver, member, Qt::DirectConnection); |
|
98 |
Q_ASSERT_X(ret, "doConnect: connection failed for: ", signal); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
99 |
} |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
100 |
|
15
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
101 |
// ---------------------------------------------------------------------------- |
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
102 |
// SatAppMainHandler::initConnections |
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
103 |
// |
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
104 |
// ---------------------------------------------------------------------------- |
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
105 |
// |
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
106 |
void SatAppMainHandler::initConnections() |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
107 |
{ |
33 | 108 |
qDebug("SATAPP: SatAppMainHandler::initConnections >"); |
109 |
||
110 |
// -------------------------------------- |
|
111 |
// MenuProvider |
|
112 |
// -------------------------------------- |
|
113 |
||
114 |
// SetupMenu command from server |
|
115 |
doConnect( |
|
116 |
mServer, SIGNAL( setUpMenu( SatAppAction &) ), |
|
117 |
mMenu, SLOT( setUpMenu( SatAppAction &) ) ); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
118 |
|
33 | 119 |
// SelectItem command from server |
120 |
doConnect( |
|
121 |
mServer, SIGNAL( selectItem( SatAppAction &) ), |
|
122 |
mMenu, SLOT( selectItem( SatAppAction &) ) ); |
|
123 |
||
124 |
// -------------------------------------- |
|
125 |
// InputProvider |
|
126 |
// -------------------------------------- |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
127 |
|
33 | 128 |
// GetInkey command |
129 |
doConnect( |
|
130 |
mServer, SIGNAL( getInkey( SatAppAction &) ), |
|
131 |
mInput, SLOT( getInkey( SatAppAction &) ) ); |
|
132 |
// GetInput command |
|
133 |
doConnect( |
|
134 |
mServer, SIGNAL( getInput( SatAppAction &) ), |
|
135 |
mInput, SLOT( getInput( SatAppAction &) ) ); |
|
136 |
||
137 |
// clearScreen in InputProvider |
|
138 |
doConnect( |
|
139 |
mServer, SIGNAL( clearScreen() ), |
|
140 |
mInput, SLOT( resetState() )); |
|
141 |
||
142 |
// -------------------------------------- |
|
143 |
// Play tone |
|
144 |
// -------------------------------------- |
|
145 |
// Play tone |
|
146 |
doConnect( |
|
147 |
mServer, SIGNAL( playTone( SatAppAction &) ), |
|
148 |
mTone, SLOT( playTone( SatAppAction &) ) ); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
149 |
|
33 | 150 |
// clearScreen in tone provider |
151 |
doConnect( |
|
152 |
mServer, SIGNAL( clearScreen() ), |
|
153 |
mTone, SLOT( clearScreen() ) ); |
|
154 |
||
155 |
// -------------------------------------- |
|
156 |
// Show Popups |
|
157 |
// -------------------------------------- |
|
158 |
||
159 |
// display text |
|
160 |
doConnect( |
|
161 |
mServer, SIGNAL(displayText( SatAppAction & )), |
|
162 |
mPopup, SLOT(displayText( SatAppAction & ))); |
|
163 |
||
164 |
// show notification |
|
165 |
doConnect( |
|
166 |
mServer, SIGNAL( notification( SatAppAction & ) ), |
|
167 |
mPopup, SLOT( notification( SatAppAction & ) ) ); |
|
168 |
||
169 |
// hide wait note |
|
170 |
doConnect( |
|
171 |
mServer, SIGNAL( stopShowWaitNote() ), |
|
172 |
mPopup, SLOT( stopShowWaitNote() ) ); |
|
173 |
||
174 |
// clearScreen in popup note provider |
|
175 |
doConnect( |
|
176 |
mServer, SIGNAL(clearScreen()), |
|
177 |
mPopup, SLOT(clearScreen())); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
178 |
|
33 | 179 |
// clearScreen in popup note provider |
180 |
doConnect( |
|
181 |
mServer, SIGNAL(showSsErrorNote()), |
|
182 |
mPopup, SLOT(showSsErrorNote())); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
183 |
|
33 | 184 |
// -------------------------------------- |
185 |
// Show Confirm |
|
186 |
// -------------------------------------- |
|
187 |
||
188 |
// show confirmCommand |
|
189 |
doConnect( |
|
190 |
mServer, SIGNAL( confirmCommand( SatAppAction & ) ), |
|
191 |
mConfirm, SLOT( confirmCommand( SatAppAction & ) ) ); |
|
192 |
||
193 |
// clearScreen |
|
194 |
doConnect( |
|
195 |
mServer, SIGNAL( clearScreen() ), |
|
196 |
mConfirm, SLOT( clearScreen() ) ); |
|
15
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
197 |
|
33 | 198 |
// Task switcher |
199 |
doConnect( |
|
200 |
mServer, SIGNAL( setUpMenu( SatAppAction & ) ), |
|
201 |
this, SLOT( updateActivity() ) ); |
|
202 |
||
203 |
doConnect( |
|
204 |
qApp, SIGNAL( aboutToQuit() ), |
|
205 |
this, SLOT( saveActivity() ) ); |
|
206 |
||
207 |
qDebug("SATAPP: SatAppMainHandler::initConnections <"); |
|
208 |
} |
|
209 |
||
210 |
// ---------------------------------------------------------------------------- |
|
211 |
// SatAppMainHandler::updateActivity |
|
212 |
// ---------------------------------------------------------------------------- |
|
213 |
// |
|
214 |
void SatAppMainHandler::updateActivity() |
|
215 |
{ |
|
216 |
qDebug("SATAPP: SatAppMainHandler::updateActivity >"); |
|
46 | 217 |
mActivity.insert(ActivityScreenshotKeyword, |
218 |
mMenu->takeScreenShot()); |
|
33 | 219 |
qDebug("SATAPP: SatAppMainHandler::updateActivity <"); |
220 |
} |
|
15
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
221 |
|
33 | 222 |
// ---------------------------------------------------------------------------- |
223 |
// SatAppMainHandler::saveActivity |
|
224 |
// ---------------------------------------------------------------------------- |
|
225 |
// |
|
226 |
void SatAppMainHandler::saveActivity() |
|
227 |
{ |
|
35 | 228 |
qDebug("SATAPP: SatAppMainHandler::saveActivity >"); |
33 | 229 |
|
230 |
// Add the activity to the activity manager |
|
46 | 231 |
const bool ok = mActivityStorage->saveActivity( |
232 |
SATAPP_ACTIVITY_ID, QVariant(), mActivity); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
233 |
|
35 | 234 |
qDebug("SATAPP: SatAppMainHandler::saveActivity < %d", ok); |
33 | 235 |
} |
15
d7fc66ccd6fb
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
12
diff
changeset
|
236 |
|
33 | 237 |
// ---------------------------------------------------------------------------- |
238 |
// SatAppMainHandler::removeActivity |
|
239 |
// ---------------------------------------------------------------------------- |
|
240 |
// |
|
241 |
void SatAppMainHandler::removeActivity() |
|
242 |
{ |
|
35 | 243 |
qDebug("SATAPP: SatAppMainHandler::removeActivity >"); |
33 | 244 |
|
46 | 245 |
|
246 |
QVariantHash activity = mActivityStorage->activityMetaData(SATAPP_ACTIVITY_ID); |
|
247 |
if(activity.keys().contains(SATAPP_ACTIVITY_ID)) { |
|
248 |
mActivity = activity; |
|
249 |
qDebug("SATAPP: SatAppMenuProvider::removeActivity store"); |
|
250 |
} |
|
251 |
const bool ok = mActivityStorage->removeActivity(SATAPP_ACTIVITY_ID); |
|
33 | 252 |
|
35 | 253 |
qDebug("SATAPP: SatAppMainHandler::removeActivity < %d", ok); |
254 |
} |
|
255 |
||
256 |
// ---------------------------------------------------------------------------- |
|
257 |
// SatAppMainHandler::isOffline |
|
258 |
// ---------------------------------------------------------------------------- |
|
259 |
// |
|
260 |
bool SatAppMainHandler::isOffline() |
|
261 |
{ |
|
262 |
//If current active profile is offline, show a warning and quit |
|
263 |
qDebug("SATAPP: SatAppMainHandler::isOffline >"); |
|
264 |
TInt profileId(0); |
|
265 |
CRepository* cr (NULL); |
|
42 | 266 |
TRAPD(err, cr = CRepository::NewL(KCRUidCoreApplicationUIs)); |
35 | 267 |
if ( KErrNone == err ) |
268 |
{ |
|
269 |
// Get the ID of the currently active profile: |
|
42 | 270 |
const TInt error = |
271 |
cr->Get(KCoreAppUIsNetworkConnectionAllowed, profileId); |
|
35 | 272 |
qDebug("SATAPP: SatAppMainHandler::isOffline get active \ |
273 |
profile error=%d",error); |
|
274 |
delete cr; |
|
275 |
} |
|
276 |
qDebug("SATAPP: SatAppMainHandler::isOffline< profileId = %d",profileId); |
|
42 | 277 |
return ( ECoreAppUIsNetworkConnectionNotAllowed == profileId ); |
35 | 278 |
} |
279 |
||
280 |
// ---------------------------------------------------------------------------- |
|
281 |
// SatAppMainHandler::showOfflineWarning |
|
282 |
// ---------------------------------------------------------------------------- |
|
283 |
// |
|
284 |
void SatAppMainHandler::showOfflineWarning() |
|
285 |
{ |
|
286 |
qDebug("SATAPP: SatAppMainHandler::showOfflineWarning >"); |
|
287 |
mOfflineWarningDlg = |
|
288 |
new HbMessageBox(HbMessageBox::MessageTypeWarning); |
|
289 |
mOfflineWarningDlg->setText( |
|
290 |
hbTrId("txt_simatk_dpopinfo_sim_services_not_available")); |
|
291 |
mOfflineWarningDlg->clearActions(); |
|
292 |
mOfflineWarningDlg->setDismissPolicy(HbDialog::TapOutside); |
|
293 |
mOfflineWarningDlg->setTimeout(KDisplayTxtUserClearTimeout); |
|
294 |
SAT_ASSERT(connect(mOfflineWarningDlg, SIGNAL(aboutToClose()), |
|
295 |
qApp, SLOT(quit()))); |
|
296 |
mOfflineWarningDlg->open(); |
|
297 |
qDebug("SATAPP: SatAppMainHandler::showOfflineWarning <"); |
|
12
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
298 |
} |
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
299 |
|
ae8abd0db65c
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
300 |
//End of file |