📄 browserlauncherexapplication.cpp
字号:
/* ====================================================================
* File: BrowserLauncherExApplication.cpp
* Created: 09/07/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "BrowserLauncherExDocument.h"
#include "BrowserLauncherExApplication.h"
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidBrowserLauncherExApp = {0x0D1C6C1A};
CApaDocument* CBrowserLauncherExApplication::CreateDocumentL()
{
// Create an BrowserLauncherEx document, and return a pointer to it
CApaDocument* document = CBrowserLauncherExDocument::NewL(*this);
return document;
}
TUid CBrowserLauncherExApplication::AppDllUid() const
{
// Return the UID for the BrowserLauncherEx application
return KUidBrowserLauncherExApp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -