On 07/16/2010 08:08 AM, [email protected] wrote:
Author: kuemmel
Date: Fri Jul 16 08:08:12 2010
New Revision: 34911
URL: http://www.lyx.org/trac/changeset/34911
Log:
CamelCase
Modified: lyx-devel/trunk/src/support/SystemcallPrivate.h
==============================================================================
/// Index to the standard output buffer.
- size_t outindex_;
+ size_t outIndex_;
out_index_
I would rather call it stdout_index_
/// Index to the standard error buffer.
- size_t errindex_;
+ size_t errIndex_;
stderr_index_
///
- std::string outfile;
+ std::string outFile_;
stdout_file_
+
/// Size of buffers.
- static size_t const bufsize_ = 200;
+ static size_t const bufferSize_ = 200;
buffer_size_
/// Standard output buffer.
- char outdata_[bufsize_];
+ char outData_[bufferSize_];
out_data_
/// Standard error buffer.
- char errdata_[bufsize_];
- ///
+ char errData_[bufferSize_];
stderr_data_
etc.
Abdel.