Coding style fixes

This commit is contained in:
Humdinger
2014-01-29 13:03:06 +01:00
parent 4c56a102ca
commit 02d8dd1561
+5 -2
View File
@@ -454,7 +454,8 @@ GrepWindow::_CreateMenus()
B_TRANSLATE("Open selection"), new BMessage(MSG_OPEN_SELECTION), 'O'); B_TRANSLATE("Open selection"), new BMessage(MSG_OPEN_SELECTION), 'O');
fSelectInTracker = new BMenuItem( fSelectInTracker = new BMenuItem(
B_TRANSLATE("Show files in Tracker"), new BMessage(MSG_SELECT_IN_TRACKER), 'K'); B_TRANSLATE("Show files in Tracker"),
new BMessage(MSG_SELECT_IN_TRACKER), 'K');
fCopyText = new BMenuItem( fCopyText = new BMenuItem(
B_TRANSLATE("Copy text to clipboard"), new BMessage(MSG_COPY_TEXT), 'B'); B_TRANSLATE("Copy text to clipboard"), new BMessage(MSG_COPY_TEXT), 'B');
@@ -466,7 +467,8 @@ GrepWindow::_CreateMenus()
B_TRANSLATE("Look in sub-folders"), new BMessage(MSG_RECURSE_DIRS)); B_TRANSLATE("Look in sub-folders"), new BMessage(MSG_RECURSE_DIRS));
fSkipDotDirs = new BMenuItem( fSkipDotDirs = new BMenuItem(
B_TRANSLATE("Skip folders starting with a dot"), new BMessage(MSG_SKIP_DOT_DIRS)); B_TRANSLATE("Skip folders starting with a dot"),
new BMessage(MSG_SKIP_DOT_DIRS));
fCaseSensitive = new BMenuItem( fCaseSensitive = new BMenuItem(
B_TRANSLATE("Case-sensitive"), new BMessage(MSG_CASE_SENSITIVE)); B_TRANSLATE("Case-sensitive"), new BMessage(MSG_CASE_SENSITIVE));
@@ -1595,6 +1597,7 @@ GrepWindow::_ModelChanged()
_SavePrefs(); _SavePrefs();
} }
bool bool
GrepWindow::_OpenInPe(const entry_ref &ref, int32 lineNum) GrepWindow::_OpenInPe(const entry_ref &ref, int32 lineNum)
{ {