Stefan Schuermans commited on 2011-11-21 22:00:13
Showing 4 changed files, with 5 additions and 5 deletions.
| ... | ... |
@@ -28,7 +28,7 @@ |
| 28 | 28 |
</p> |
| 29 | 29 |
<h3>Input List</h3> |
| 30 | 30 |
<p> |
| 31 |
- The inputs to be drawn onto the canvas are contained in the |
|
| 31 |
+ The inputs to be drawn onto the canvas are configured in the |
|
| 32 | 32 |
<code>inputs</code> subdirectory. |
| 33 | 33 |
Each input is configured in an own subdirectory in <code>inputs</code>. |
| 34 | 34 |
E.g. the configurations for inputs with names <code>top</code> |
| ... | ... |
@@ -208,7 +208,7 @@ void Canvas::redraw() |
| 208 | 208 |
void Canvas::sendFrame() |
| 209 | 209 |
{
|
| 210 | 210 |
if (m_pOutStream) {
|
| 211 |
- // frame avalable -> send it |
|
| 211 |
+ // frame available -> send it |
|
| 212 | 212 |
if (m_canvasHasFrame) |
| 213 | 213 |
m_pOutStream->setFrame(m_pCanvas); |
| 214 | 214 |
// no frame available -> send this information |
| ... | ... |
@@ -92,7 +92,7 @@ protected: |
| 92 | 92 |
SettingFile m_fileOutStream; ///< output stream name file |
| 93 | 93 |
Format m_format; ///< canvas format |
| 94 | 94 |
stBlinkenFrame *m_pCanvas; ///< canvas to put streams on |
| 95 |
- bool m_canvasHasFrame; ///< if there is at >= 1 frame on canvas |
|
| 95 |
+ bool m_canvasHasFrame; ///< if there is >= 1 frame on canvas |
|
| 96 | 96 |
InList m_inList; ///< current input list |
| 97 | 97 |
std::string m_nameOutStream; ///< name of output stream |
| 98 | 98 |
Stream *m_pOutStream; ///< output stream |
| ... | ... |
@@ -35,7 +35,7 @@ Canvas::Input::Input(Canvas &canvas, const Directory &dirBase): |
| 35 | 35 |
m_haveSize(false), |
| 36 | 36 |
m_haveDestPos(false) |
| 37 | 37 |
{
|
| 38 |
- // get setting and attach to input stream |
|
| 38 |
+ // get settings and attach to input stream |
|
| 39 | 39 |
getSrcPos(); |
| 40 | 40 |
getSize(); |
| 41 | 41 |
getDestPos(); |
| ... | ... |
@@ -141,7 +141,7 @@ void Canvas::Input::getInStream() |
| 141 | 141 |
if (m_pInStream) |
| 142 | 142 |
m_pInStream->attach(this); |
| 143 | 143 |
|
| 144 |
- // redrawing canvas will happen automaticall because stream will set frame |
|
| 144 |
+ // redrawing canvas will happen automatically because stream will set frame |
|
| 145 | 145 |
} |
| 146 | 146 |
|
| 147 | 147 |
/// detach from input stream and release it |
| 148 | 148 |