mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
rosshell: printer and network folder in start menu
svn path=/trunk/; revision=14959
This commit is contained in:
parent
e49c3dc30f
commit
aa0e827382
2 changed files with 3 additions and 3 deletions
|
@ -447,7 +447,7 @@ FONT 10, "MS Sans Serif"
|
|||
BEGIN
|
||||
LTEXT "ReactOS Explorer",IDC_ROS_EXPLORER,91,13,104,11
|
||||
LTEXT "V 0.9",IDC_VERSION_TXT,91,27,104,8
|
||||
LTEXT "(c) 2003/2004 Martin Fuchs",IDC_STATIC,91,42,104,8
|
||||
LTEXT "(c) 2003-2005 Martin Fuchs",IDC_STATIC,91,42,104,8
|
||||
LTEXT "",IDC_WIN_VERSION,91,58,98,22
|
||||
LTEXT "http://www.sky.franken.de/explorer/",IDC_WWW,17,84,129,
|
||||
8
|
||||
|
|
|
@ -2083,7 +2083,7 @@ void SettingsMenu::AddEntries()
|
|||
{
|
||||
super::AddEntries();
|
||||
|
||||
#ifdef _ROS_ // to be removed when printer/network will be implemented
|
||||
#if defined(ROSSHELL) || defined(_ROS_) // _ROS_ to be removed when printer/network will be implemented
|
||||
AddButton(ResString(IDS_PRINTERS), ICID_PRINTER, false, IDC_PRINTERS_MENU);
|
||||
AddButton(ResString(IDS_CONNECTIONS), ICID_NETWORK, false, IDC_CONNECTIONS);
|
||||
#else
|
||||
|
@ -2114,7 +2114,7 @@ void BrowseMenu::AddEntries()
|
|||
#ifndef __MINGW32__ // SHRestricted() missing in MinGW (as of 29.10.2003)
|
||||
if (!g_Globals._SHRestricted || !SHRestricted(REST_NONETHOOD)) // or REST_NOENTIRENETWORK ?
|
||||
#endif
|
||||
#ifdef _ROS_ // to be removed when printer/network will be implemented
|
||||
#if defined(ROSSHELL) || defined(_ROS_) // _ROS_ to be removed when printer/network will be implemented
|
||||
AddButton(ResString(IDS_NETWORK), ICID_NETWORK, false, IDC_NETWORK);
|
||||
#else
|
||||
AddButton(ResString(IDS_NETWORK), ICID_NETWORK, true, IDC_NETWORK);
|
||||
|
|
Loading…
Reference in a new issue