equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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 * Panic codes for Meeting Request Viewers |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef _MRPANICS_H_ |
|
22 #define _MRPANICS_H_ |
|
23 |
|
24 // CONSTANTS |
|
25 |
|
26 /** |
|
27 * Errors caused by meeting request data should be handled by leaving, |
|
28 * only programming errors by panicing! |
|
29 */ |
|
30 enum TPanicCode |
|
31 { |
|
32 ECCalEntryNull = 1, |
|
33 EEmptyEntryArray, |
|
34 EDatabaseCalEntryNull, |
|
35 ECombinedCalEntryNull, |
|
36 EParsedCalEntryNull, |
|
37 EMRUtilsNull, |
|
38 ETMsvIDNull, |
|
39 ECRichBioNull, |
|
40 EUnexpectedNullMRModel, |
|
41 EUtilsExtNull, |
|
42 EMsvSessionNull, |
|
43 EDataFillerNull, |
|
44 EListboxNull, |
|
45 EInfopopupNull, |
|
46 EUnexpectedNonNull, |
|
47 |
|
48 EIllegalTMsvEntryType, |
|
49 EUnexpectedMethodCall, |
|
50 EDataFillerExists, |
|
51 EIllegalCallerApp, |
|
52 EEditModeResetAttempt, |
|
53 ENonOrganizerSettingProtocolFields, |
|
54 EUnexpectedEntryMethodType, |
|
55 EIllegalParamValue, |
|
56 EIllegalMailHeader |
|
57 }; |
|
58 |
|
59 #endif //_MRPANICS_H_ |
|
60 |
|
61 // end of file |