Skip to content

Commit

Permalink
Minor .fFixes to comments and text of messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewWPhillips committed May 16, 2016
1 parent aa29525 commit 2faaa8e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion HexEdit/HexEditView.cpp
Expand Up @@ -15852,7 +15852,7 @@ template<class T> void OnOperateBinary(CHexEditView *pv, binop_type op, LPCSTR d
// Tell the user about divide by zero errors
CString mess;
mess.Format("There were %d divide by zero errors while performing %s. "
"The values at those locations were not changed.", int(div0), desc);
"The values at each of those locations were not changed.", int(div0), desc);
TaskMessageBox("Divide by Zero", mess);
theApp.mac_error_ = 5;
}
Expand Down
19 changes: 10 additions & 9 deletions HexEdit/HexFileList.cpp
Expand Up @@ -877,15 +877,16 @@ void CHexFileList::SetupJumpList()
}
}

const char * explanation = "\nJump Lists were introduced with Windows 7. They are lists of items that are "
"quickly accessed by right-clicking the HexEdit icon on the Task Bar. HexEdit "
"supports lists of most recently opened items, frequently opened items, and "
"those that you mark as favorites.\n\n"
"However, for jump lists to work the type(s) of the files in the jump lists "
"must be registered as \"openable\" with HexEdit. To associate the above file "
"types with HexEdit requires starting a separate application with Administrator "
"privileges in order to add registry setting for all users.\n\n"
"When prompted please select \"Yes\" in the User Account Control window.";
static const char * explanation =
"\nJump Lists were introduced with Windows 7. They are lists of items that are "
"quickly accessed by right-clicking the HexEdit icon on the Task Bar. HexEdit "
"supports lists of most recently opened items, frequently opened items, and "
"those that you mark as favorites.\n\n"
"However, for jump lists to work the type(s) of the files in the jump lists "
"must be registered as \"openable\" with HexEdit. To associate the above file "
"types with HexEdit requires starting a separate application with Administrator "
"privileges in order to add registry setting for all users.\n\n"
"When prompted please select \"Yes\" in the User Account Control window.";

// Only fire up reghelper if need to register something (need_reg is true)
// (ie, there are extensions to register OR the appid or exe path is wrong)
Expand Down
4 changes: 2 additions & 2 deletions HexEdit/Options.cpp
Expand Up @@ -649,7 +649,7 @@ BOOL CFoldersPage::OnApply()
// Check that the directories exist
if (!PathIsDirectory(pParent->val_.open_folder_) &&
TaskMessageBox("Folder Not Found",
"The default Opne Folder \"" + pParent->val_.open_folder_ +
"The specified default Open Folder \"" + pParent->val_.open_folder_ +
"\" does not exist.\n\nContinue anyway?",
MB_YESNO) == IDNO)
{
Expand All @@ -659,7 +659,7 @@ BOOL CFoldersPage::OnApply()
}
if (!PathIsDirectory(pParent->val_.save_folder_) &&
TaskMessageBox("Folder Not Found",
"The default Save As Folder \"" + pParent->val_.save_folder_ +
"The specified default Save As Folder \"" + pParent->val_.save_folder_ +
"\" does not exist.\n\nContinue anyway?",
MB_YESNO) == IDNO)
{
Expand Down
2 changes: 1 addition & 1 deletion HexEdit/RegHelper/ReadMe.txt
@@ -1,7 +1,7 @@
RegHelper is a project that is used to support HexEdit.

HexEdit cannot modify registry settings affecting all users, even if it is run by an Administrator.
A separate program (RegHelper.exe) is used to allow global registry changes. When HexEdit runs RegHelp.exe
A separate program (RegHelper.exe) is used to allow global registry changes. When HexEdit runs RegHelper.exe
a UAC (User Access Control) window is displayed asking the user if they want to allow the changes.

Command Line Options
Expand Down

0 comments on commit 2faaa8e

Please sign in to comment.