3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/msw/wince/smartphone.rc
|
|
// Purpose: resources for MS Smartphone build
|
|
// Author: Wlodzimierz ABX Skiba
|
|
// Modified by:
|
|
// Created: 01.05.2004
|
|
// Copyright: (c) Wlodzimierz Skiba
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <aygshell.h>
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_EMPTY ""
|
|
END
|
|
|
|
IDR_POPUP_1 MENU
|
|
BEGIN
|
|
POPUP ""
|
|
BEGIN
|
|
MENUITEM "M", IDM_ITEM
|
|
END
|
|
END
|
|
|
|
IDR_POPUP_2 MENU
|
|
BEGIN
|
|
POPUP ""
|
|
BEGIN
|
|
MENUITEM "M", IDM_ITEM
|
|
END
|
|
POPUP ""
|
|
BEGIN
|
|
MENUITEM "M", IDM_ITEM
|
|
END
|
|
END
|
|
|
|
IDR_MENUBAR_ONE_BUTTON RCDATA
|
|
BEGIN
|
|
0,2,
|
|
I_IMAGENONE, IDM_LEFT, TBSTATE_ENABLED, TBSTYLE_BUTTON | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, NOMENU,
|
|
I_IMAGENONE, IDM_RIGHT, TBSTATE_ENABLED, TBSTYLE_BUTTON | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, NOMENU,
|
|
END
|
|
|
|
IDR_MENUBAR_LEFT_MENU RCDATA
|
|
BEGIN
|
|
IDR_POPUP_1,1,
|
|
I_IMAGENONE, IDM_LEFT, TBSTATE_ENABLED, TBSTYLE_DROPDOWN | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, 0,
|
|
END
|
|
|
|
IDR_MENUBAR_RIGHT_MENU RCDATA
|
|
BEGIN
|
|
IDR_POPUP_1,2,
|
|
I_IMAGENONE, IDM_LEFT, TBSTATE_ENABLED, TBSTYLE_BUTTON | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, NOMENU,
|
|
I_IMAGENONE, IDM_RIGHT, TBSTATE_ENABLED, TBSTYLE_DROPDOWN | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, 0,
|
|
END
|
|
|
|
IDR_MENUBAR_BOTH_MENUS RCDATA
|
|
BEGIN
|
|
IDR_POPUP_2,2,
|
|
I_IMAGENONE, IDM_LEFT, TBSTATE_ENABLED, TBSTYLE_DROPDOWN | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, 0,
|
|
I_IMAGENONE, IDM_RIGHT, TBSTATE_ENABLED, TBSTYLE_DROPDOWN | TBSTYLE_AUTOSIZE, IDS_EMPTY, 0, 1,
|
|
END
|
|
|