diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index f7e7c00fa6..047686bd7a 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -4596,13 +4596,6 @@ resourcestring lisCoolbarMoveSelectedDown = 'Move selected toolbar item down'; lisCoolbarAddDivider = 'Add Divider'; lisCoolbarClearSelection = 'Clear selection'; - lisCoolbarHelp1 = 'The "Add" button inserts a command before the ' + - 'selected Item of the Toolbar.'; - lisCoolbarHelp2 = 'If none is selected, the Item will be appended at the end ' + - 'of the Toolbar.'; - lisCoolbarHelp3 = 'You may rearrange Toolbar Items with "Move Up" and '+ - '"Move Down" buttons.'; - lisCoolbarHelp4 = 'Hint: to append an Item at the end, use "Clear selection"'; lisToolbarConfiguration = 'Toolbar Configuration'; lisCoolbarAvailableCommands = 'Available commands'; lisCoolbarToolbarCommands = 'Toolbar commands'; diff --git a/ide/toolbarconfig.pas b/ide/toolbarconfig.pas index 4d1801f5b4..4b6bf40c93 100644 --- a/ide/toolbarconfig.pas +++ b/ide/toolbarconfig.pas @@ -217,11 +217,7 @@ end; procedure TToolBarConfig.btnHelpClick(Sender: TObject); begin - OpenUrl('http://wiki.freepascal.org/IDE_Window:_Editor_Toolbar'); - { - ShowMessageFmt('%s%s%s%s%s%s%s', [lisCoolBarHelp1, LineEnding, lisCoolBarHelp2, LineEnding, - lisCoolBarHelp3, LineEnding, lisCoolBarHelp4]); - } + OpenUrl('http://wiki.freepascal.org/IDE_Window:_Toolbar_Config'); end; procedure TToolBarConfig.btnShowClick(Sender: TObject);