ReportBug2.diff

Zbigniew Rebacz, 02/02/2015 05:24 PM

Download (1.42 KB)

View differences:

ide/idebar.cpp (kopia robocza)
588 588

  
589 589
void Ide::HelpMenu(Bar& menu)
590 590
{
591
	menu.Add("Get help / report bugs..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/forums"));
592
	menu.Add("Online documentation..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/www$uppweb$documentation$en-us.html"));
593
	menu.Add("Common information..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/www$uppweb$community$en-us.html"));
594
	if(menu.IsMenuBar())
595
		menu.Separator();
596 591
	menu.Add(AK_BROWSETOPICS, IdeImg::help(), THISBACK(ShowTopics));
597 592
	menu.Add(AK_SEARCHTOPICS, THISBACK(SearchTopics));
598 593
	menu.Add(AK_BROWSETOPICS_WIN, IdeImg::help_win(), THISBACK(ShowTopicsWin));
594
	if(menu.IsMenuBar()) {
595
		menu.Separator();
596
		menu.Add("Get help / report bugs..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/forums"));
597
		menu.Add("Online documentation..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/www$uppweb$documentation$en-us.html"));
598
		menu.Add("Common information..", IdeImg::Go_forward(), callback1(LaunchWebBrowser, "http://www.ultimatepp.org/www$uppweb$community$en-us.html"));
599
	}
599 600
	if(menu.IsMenuBar())
600 601
		menu.Separator();
601 602
	menu.Add("About..", THISBACK(About));