Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/drivelst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2936,7 +2936,7 @@ BOOL CDrivesList::OnContextMenu(BOOL posByMouse, int itemIndex, int panel, const

// commented out so that we can disconnect a network drive that is not accessible at the moment (longer waiting is tolerated)
// if (Drives->At(selectedIndex).DriveType == drvtRemote &&
// Drives->At(selectedIndex).Accessible && // we will allow to disconnect unaccessible network drives, we verify the others
// Drives->At(selectedIndex).Accessible && // we will allow to disconnect inaccessible network drives, we verify the others
// MainWindow->GetActivePanel()->CheckPath(TRUE, path) != ERROR_SUCCESS) return FALSE;

// MainWindow->ReleaseMenuNew(); // windows weren't built for more context menus
Expand Down
2 changes: 1 addition & 1 deletion src/inflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
There are (currently) three kinds of inflate blocks: stored, fixed, and
dynamic. The compressor outputs a chunk of data at a time and decides
which method to use on a chunk-by-chunk basis. A chunk might typically
be 32K to 64K, uncompressed. If the chunk is uncompressible, then the
be 32K to 64K, uncompressed. If the chunk is incompressible, then the
"stored" method is used. In this case, the bytes are simply stored as
is, eight bits per byte, with none of the above coding. The bytes are
preceded by a count, since there is no longer an EOB code.
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/automation/guiform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ LRESULT CSalamanderGuiForm::WndProc(
}
else if (LOWORD(wParam) == IDOK)
{
// This is command synthetized by the
// This command is synthesized by the
// dialog manager in reaction to the
// Enter key when there is no button.
}
Expand Down Expand Up @@ -515,7 +515,7 @@ void CSalamanderGuiForm::InternalAddComponent(
_ASSERTE(bounds.cy >= 0);

// Calculate automatic position of the component.
// Put component bellow the previous by default and put
// Put the component below the previous one by default and put
// some spacing between them.
int yspacing = 0;
if (pPrevComponent != NULL)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/filecomp/dlg_com.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ enum
WN_CBINIT_FINISHED, // the combo box was initialized successfully
WN_CALCULATING_DETAILS, // detailed differences are being computed
WN_COMPARE_FINISHED, // comparison finishes
WN_GET_CHANGESCOMBO, // queries HWND of the Change combobox
WN_GET_CHANGESCOMBO, // queries HWND of the Change combo box
WN_SET_PROGRESS, // sets progress MAKELPARAM(percent, changesCnt)
WN_ADD_CHANGE // registers a change in binary comparison
};
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/ftp/ftp.rh2
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#define IDM_RESUMETESTFAILEDONRETRY 1117
// menu on button Use Binary Mode in ASCII Transfer Mode is Set for File with Binary Content dialog (see Solve Error button in operation dialog)
#define IDM_ASCIITRFORBINFILE 1118
// menu on Add button in FTP Configuration > General (Proxy Server combobox)
// menu on Add button in FTP Configuration > General (Proxy Server combo box)
#define IDM_ADDPROXYSERVER 1119
// menu in Proxy Server dialog, in Script editbox
#define IDM_PRXSRVSCRIPTMENU 1120
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/ftp/help/hh/ftp/dlgboxes_chattrs.htm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h4>Options</h4>

<dt><i>Include subdirectories</i></dt>
<dd>When checked, it will process also files and directories in selected subdirectories.
Otherwise it will process only selected subdirectories (without content).
Otherwise, it will process only selected subdirectories (without content).
</dd>

<dt><i>Change attributes of files</i></dt>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/nethood/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ class CNethoodCacheEnumerationThread : public CThread
/// the system defined error code.
DWORD EnumNetworkShortcuts();

/// Enumerates volumes attached trough Terminal Service client.
/// Enumerates volumes attached through Terminal Service client.
DWORD EnumTSClientVolumes();

/// Reads shortcut target and inserts it as a child of the node
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/nethood/icons.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class CNethoodIcons
// from the IconPro application and the 'Icons in Win32' article
// (http://msdn.microsoft.com/en-us/library/ms997538.aspx).
// These first two structs represent how the icon information is stored
// when it is bound into a EXE or DLL file. Structure members are WORD
// when it is bound into an EXE or DLL file. Structure members are WORD
// aligned and the last member of the structure is the ID instead of
// the imageoffset.
#pragma pack(push)
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/peviewer/pefile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ BOOL CPEFile::ImageDirectoryOffset(DWORD dwIMAGE_DIRECTORY,

if (!b64Bit)
{
/* must be 0 thru (NumberOfRvaAndSizes-1) */
/* must be 0 through (NumberOfRvaAndSizes-1) */
if (dwIMAGE_DIRECTORY >= poh->NumberOfRvaAndSizes)
return FALSE;

Expand All @@ -123,7 +123,7 @@ BOOL CPEFile::ImageDirectoryOffset(DWORD dwIMAGE_DIRECTORY,
{
PIMAGE_OPTIONAL_HEADER64 poh64 = (PIMAGE_OPTIONAL_HEADER64)poh;

/* must be 0 thru (NumberOfRvaAndSizes-1) */
/* must be 0 through (NumberOfRvaAndSizes-1) */
if (dwIMAGE_DIRECTORY >= poh64->NumberOfRvaAndSizes)
return FALSE;

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/regedt/finddlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ CComboboxEdit::GetSel(DWORD *start, DWORD *end)
void
CComboboxEdit::ReplaceText(const char *text)
{
// we have to revive the selection because the dumb combobox forgot it
// we have to revive the selection because the dumb combo box forgot it
SendMessage(HWindow, EM_SETSEL, SelStart, SelEnd);
SendMessage(HWindow, EM_REPLACESEL, TRUE, (LPARAM)text);
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/renamer/dialogs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ void CComboboxEdit::SetSel(DWORD start, DWORD end)
void CComboboxEdit::ReplaceText(const char* text)
{
CALL_STACK_MESSAGE_NONE
// we must refresh the selection because the dumb combobox forgot it
// we must refresh the selection because the dumb combo box forgot it
SendMessage(HWindow, EM_SETSEL, SelStart, SelEnd);
SendMessage(HWindow, EM_REPLACESEL, TRUE, (LPARAM)text);
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/renamer/dialogs.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void TransferCombo(CTransferInfo& ti, int id, int* comboContent, int& value);
//
// CComboboxEdit
//
// Because the combobox is cleared, the classic method (CB_GETEDITSEL) cannot determine
// Because the combo box is cleared, the classic method (CB_GETEDITSEL) cannot determine
// what the selection was after focus is lost. This control solves it.
//

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/shared/lukas/counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// ****************************************************************************
//
// CCounter -- hight precision counter for performance metering
// CCounter -- high precision counter for performance metering

class CCounter
{
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/unarj/unarj.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ typedef unsigned long ulong; /* 32 bits or more */
/* Structure of archive main header (low order byte first):
/*
/* 2 header id (comment and local file) = 0x60, 0xEA
/* 2 basic header size (from 'first_hdr_size' thru 'comment' below)
/* 2 basic header size (from 'first_hdr_size' through 'comment' below)
/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1
/* = 0 if end of archive
/*
Expand Down Expand Up @@ -114,7 +114,7 @@ typedef unsigned long ulong; /* 32 bits or more */
/* Structure of archive file header (low order byte first):
/*
/* 2 header id (comment and local file) = 0x60, 0xEA
/* 2 basic header size (from 'first_hdr_size' thru 'comment' below)
/* 2 basic header size (from 'first_hdr_size' through 'comment' below)
/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1
/* = 0 if end of archive
/*
Expand Down
8 changes: 4 additions & 4 deletions src/plugins/undelete/library/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,10 @@ typedef struct _DOSDPB

// GetDriveFormFactor returns the drive form factor.
//
// It returns 350 if the drive is a 3.5" floppy drive.
// It returns 525 if the drive is a 5.25" floppy drive.
// It returns 800 if the drive is a 8" floppy drive.
// It returns 0 on error.
// Returns 350 if the drive is a 3.5" floppy drive.
// Returns 525 if the drive is a 5.25" floppy drive.
// Returns 800 if the drive is an 8" floppy drive.
// Returns 0 on error.
//
// drive is C:\, D:\, \\?\Volume{GUID} (win2k and above only) etc.

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/zip/chicon.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// Structs

// These first two structs represent how the icon information is stored
// when it is bound into a EXE or DLL file. Structure members are WORD
// when it is bound into an EXE or DLL file. Structure members are WORD
// aligned and the last member of the structure is the ID instead of
// the imageoffset.
#pragma pack(push)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/zip/explode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ int Explode(CDecompressionObject* decompress);
buffer of inflate is used, and it works just as well to always have
a 32K circular buffer, so the index is anded with 0x7fff. This is
done to allow the window to also be used as the output buffer. */
/* This must be supplied in an external module useable like "uch slide[8192];"
/* This must be supplied in an external module usable like "uch slide[8192];"
or "uch *slide;", where the latter would be malloc'ed. In unzip, slide[]
is actually a 32K area for use by inflate, which uses a 32K sliding window.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/zip/inflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
There are (currently) three kinds of inflate blocks: stored, fixed, and
dynamic. The compressor outputs a chunk of data at a time and decides
which method to use on a chunk-by-chunk basis. A chunk might typically
be 32K to 64K, uncompressed. If the chunk is uncompressible, then the
be 32K to 64K, uncompressed. If the chunk is incompressible, then the
"stored" method is used. In this case, the bytes are simply stored as
is, eight bits per byte, with none of the above coding. The bytes are
preceded by a count, since there is no longer an EOB code.
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/zip/selfextr/inflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ unsigned char* InEnd;
There are (currently) three kinds of inflate blocks: stored, fixed, and
dynamic. The compressor outputs a chunk of data at a time and decides
which method to use on a chunk-by-chunk basis. A chunk might typically
be 32K to 64K, uncompressed. If the chunk is uncompressible, then the
be 32K to 64K, uncompressed. If the chunk is incompressible, then the
"stored" method is used. In this case, the bytes are simply stored as
is, eight bits per byte, with none of the above coding. The bytes are
preceded by a count, since there is no longer an EOB code.
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/zip/zip2sfx/inflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ unsigned char* InEnd;
There are (currently) three kinds of inflate blocks: stored, fixed, and
dynamic. The compressor outputs a chunk of data at a time and decides
which method to use on a chunk-by-chunk basis. A chunk might typically
be 32K to 64K, uncompressed. If the chunk is uncompressible, then the
be 32K to 64K, uncompressed. If the chunk is incompressible, then the
"stored" method is used. In this case, the bytes are simply stored as
is, eight bits per byte, with none of the above coding. The bytes are
preceded by a count, since there is no longer an EOB code.
Expand Down
2 changes: 1 addition & 1 deletion src/salinflt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
There are (currently) three kinds of inflate blocks: stored, fixed, and
dynamic. The compressor outputs a chunk of data at a time and decides
which method to use on a chunk-by-chunk basis. A chunk might typically
be 32K to 64K, uncompressed. If the chunk is uncompressible, then the
be 32K to 64K, uncompressed. If the chunk is incompressible, then the
"stored" method is used. In this case, the bytes are simply stored as
is, eight bits per byte, with none of the above coding. The bytes are
preceded by a count, since there is no longer an EOB code.
Expand Down
2 changes: 1 addition & 1 deletion src/shellext/shellext.h
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void SE_Destructor(ShellExt* se);
#define _ILNext(pidl) _ILSkip(pidl, (pidl)->mkid.cb)

//#ifdef _DEBUG
// Dugging aids for making sure we dont use free pidls
// Debugging aids for making sure we don't use freed PIDLs
//#define VALIDATE_PIDL(pidl) Assert((pidl)->mkid.cb != 0xC5C5)
//#else
#define VALIDATE_PIDL(pidl)
Expand Down
2 changes: 1 addition & 1 deletion src/translator/datarh.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class CDataRH
protected:
void CleanIncompleteItems();

// analyse the line and add it to the array if it is a define
// analyse the line and add it to the array if it is a #define
BOOL ProcessLine(const char* line, const char* lineEnd, int row);

// convert 'param' to a numeric ID; when the value is still unknown because
Expand Down
Loading