JDimproved / JDim

2ch browser for linux
https://jdimproved.github.io/JDim/
GNU General Public License v2.0
46 stars 11 forks source link

DrawAreaBase: Use cairo_t instead of std::unique_ptr<cairo_t> #1224

Closed ma8ma closed 1 year ago

ma8ma commented 1 year ago

メンバー関数の戻り値を使っていないとcppcheckに指摘されたためcairommのオブジェクトから一時的に借りる処理を修正して生ポインターの変数を使うように変更します。

cppcheck 2.11.1のレポート

src/article/drawareabase.cpp:4713:14: warning: Return value of function m_cr.release() is not used. [ignoredReturnValue]
        m_cr.release();
             ^
src/article/drawareabase.cpp:4724:10: warning: Return value of function m_cr.release() is not used. [ignoredReturnValue]
    m_cr.release();
         ^