Changeset 371 for apps/windows_mobile/trunk/PocketPC/TelnicPlugin/Plugin/TelnicMain/OptionsPropSheet.cpp
- Timestamp:
- 06/01/09 12:19:13 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
apps/windows_mobile/trunk/PocketPC/TelnicPlugin/Plugin/TelnicMain/OptionsPropSheet.cpp
r21 r371 1 1 /* 2 * Copyright (c) 2007 Telnic. All rights reserved. 3 * 4 * Filename: optionpropsheet.cpp 5 * Project: .tel 6 * Created: 20/06/07 7 * Author: Sunil Kumar 8 * 2 * Copyright (c) 2008, Telnic Ltd. 3 * All rights reserved. 4 * Redistribution and use in source and binary forms, with or without modification, 5 * are permitted provided that the following conditions are met: 6 * Redistributions of source code must retain the above copyright notice, 7 * this list of conditions and the following disclaimer. 8 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and 9 * the following disclaimer in the documentation and/or other materials provided with the distribution. 10 * Neither the name of the Telnic Ltd. nor the names of its contributors may be used to endorse or promote 11 * products derived from this software without specific prior written permission. 12 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED 13 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 14 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 15 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 16 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 17 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 18 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 19 * THE POSSIBILITY OF SUCH DAMAGE. 20 */ 21 /* 22 * Filename: optionpropsheet.cpp 9 23 * Description: 10 24 * Implementation of the Optionpropsheet property sheet … … 25 39 m_pPage1 = new COptionsPage1(); 26 40 m_pPage2 = new COptionsPage2(); 27 m_pPage3 = new COptionPage3(); 41 //m_pPage3 = new COptionPage3();//removing the DNS settngs option 42 m_pPage4 = new CAbout(); 28 43 29 44 AddPage(m_pPage1); 30 45 AddPage(m_pPage2); 31 AddPage(m_pPage3); 46 //AddPage(m_pPage3);//removing the DNS settngs option 47 AddPage(m_pPage4); 32 48 } 33 49 /* … … 39 55 m_pPage1 = new COptionsPage1(); 40 56 m_pPage2 = new COptionsPage2(); 41 m_pPage3 = new COptionPage3(); 57 //m_pPage3 = new COptionPage3();//removing the DNS settngs option 58 m_pPage4 = new CAbout(); 42 59 43 60 AddPage(m_pPage1); 44 61 AddPage(m_pPage2); 45 AddPage(m_pPage3); 62 //AddPage(m_pPage3);//removing the DNS settngs option 63 AddPage(m_pPage4); 46 64 } 47 65 /* … … 52 70 delete m_pPage1; 53 71 delete m_pPage2; 54 delete m_pPage3; 72 //delete m_pPage3; 73 delete m_pPage4; 55 74 } 56 75








