Skip to content

Commit

Permalink
Merge pull request #225 from lxqt/fix_compilation
Browse files Browse the repository at this point in the history
Fixed compilation
  • Loading branch information
tsujan authored Jan 14, 2024
2 parents d4f36e2 + 9fc5e56 commit 1f42940
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
obconf-qt-0.16.4 / 2024-01-14
=============================
* Fixed compilation.

obconf-qt-0.16.3 / 2023-08-16
=============================
* Added missing copyright info.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set(QT_MINIMUM_VERSION "5.12.0")

set(OBCONFQT_MAJOR_VERSION 0)
set(OBCONFQT_MINOR_VERSION 16)
set(OBCONFQT_PATCH_VERSION 3)
set(OBCONFQT_PATCH_VERSION 4)
set(OBCONFQT_VERSION ${OBCONFQT_MAJOR_VERSION}.${OBCONFQT_MINOR_VERSION}.${OBCONFQT_PATCH_VERSION})
add_definitions("-DOBCONFQT_VERSION=\"${OBCONFQT_VERSION}\"")

Expand Down
2 changes: 1 addition & 1 deletion src/obconf-qt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int main(int argc, char** argv) {

/* look for parsing errors */
{
xmlErrorPtr e = xmlGetLastError();
const xmlError *e = xmlGetLastError();

if(e) {
QString message = QObject::tr("Error while parsing the Openbox configuration file. Your configuration file is not valid XML.\n\nMessage: %1")
Expand Down

0 comments on commit 1f42940

Please sign in to comment.