mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 07:37:49 +02:00
Fix for bug with reliable messages.
This commit is contained in:
parent
0a69b1b038
commit
a67153caff
2 changed files with 5 additions and 5 deletions
|
@ -4,22 +4,22 @@
|
|||
<context>
|
||||
<name>Application</name>
|
||||
<message>
|
||||
<location filename="src/Application.cpp" line="1351"/>
|
||||
<location filename="src/Application.cpp" line="1354"/>
|
||||
<source>Export Voxels</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="src/Application.cpp" line="1352"/>
|
||||
<location filename="src/Application.cpp" line="1355"/>
|
||||
<source>Sparse Voxel Octree Files (*.svo)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="src/Application.cpp" line="3531"/>
|
||||
<location filename="src/Application.cpp" line="3554"/>
|
||||
<source>Open Script</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="src/Application.cpp" line="3532"/>
|
||||
<location filename="src/Application.cpp" line="3555"/>
|
||||
<source>JavaScript Files (*.js)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -420,7 +420,7 @@ bool CircularBuffer::atEnd() const {
|
|||
}
|
||||
|
||||
qint64 CircularBuffer::bytesAvailable() const {
|
||||
return _size - _offset + QIODevice::bytesAvailable();
|
||||
return _size - _offset;
|
||||
}
|
||||
|
||||
bool CircularBuffer::canReadLine() const {
|
||||
|
|
Loading…
Reference in a new issue