aboutsummaryrefslogtreecommitdiff
path: root/po/he
Commit message (Expand)AuthorAge
* Footsteps without view bobbing (#5645)Louis Pearson2017-04-25
* Run updatepo.shest312016-12-14
* Run updatepo.shest312016-08-30
* Run updatepo.shest312016-07-12
* Translated using Weblate (Hebrew)yuval hreman2016-05-30
* Run updatepo.shest312016-05-05
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
* Translated using Weblate (Hebrew)ChaosWormz2015-12-21
* Run util/updatepo.shest312015-11-08
* Translated using Weblate (Hebrew)ChaosWormz2015-11-08
* Translated using Weblate (Hebrew)PilzAdam2015-11-08
OSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef JMUTEXAUTOLOCK_H #define JMUTEXAUTOLOCK_H #include "jmutex.h" class JMutexAutoLock { public: JMutexAutoLock(JMutex &m) : mutex(m) { mutex.Lock(); } ~JMutexAutoLock() { mutex.Unlock(); } private: JMutex &mutex; }; #endif // JMUTEXAUTOLOCK_H