Change a bunch of tabs into spaces

At the beginning of lines, one uses tabs for indenting. In the middle of the
line, you use spaces. If you want two different lines to line up with each
other, you start them with the same number of tabs and use spaces for the rest
of the indenting in the "other" line.

Really, that's how one does it!


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1963 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2010-05-01 20:15:01 +00:00
parent 837f1f62a8
commit f2d7ae1a08
23 changed files with 306 additions and 305 deletions
+7 -7
View File
@@ -122,12 +122,12 @@ private:
// flock() wrapper
bool Lock(int iOperation);
CString m_sBuffer;
int m_iFD;
CString m_sBuffer;
int m_iFD;
protected:
CString m_sLongName; //!< Absolute filename (m_sPath + "/" + m_sShortName)
CString m_sShortName; //!< Filename alone, without path
CString m_sLongName; //!< Absolute filename (m_sPath + "/" + m_sShortName)
CString m_sShortName; //!< Filename alone, without path
};
class CDir : public vector<CFile*> {
@@ -282,8 +282,8 @@ public:
private:
protected:
CFile::EFileAttr m_eSortAttr;
bool m_bDesc;
CFile::EFileAttr m_eSortAttr;
bool m_bDesc;
};
//! @author imaginos@imaginos.net
@@ -316,6 +316,6 @@ public:
void close2(int iPid, int iReadFD, int iWriteFD);
private:
int m_iPid;
int m_iPid;
};
#endif // !_FILEUTILS_H