https://salsa.debian.org/debian/tipp10/-/raw/debian/2.1.0-5/debian/patches/qt5.patch Author: Reiner Herrmann Description: Port to Qt5 Bug-Debian: https://bugs.debian.org/875207 --- a/tipp10.pro +++ b/tipp10.pro @@ -14,6 +14,7 @@ DEPENDPATH += . INCLUDEPATH += . CONFIG += qt +QT += widgets multimedia printsupport QT += sql RC_FILE += tipp10.rc RESOURCES += tipp10.qrc --- a/main.cpp +++ b/main.cpp @@ -24,7 +24,6 @@ ****************************************************************/ #include -#include #include #include #include @@ -212,7 +211,7 @@ // Set windows style if (!useNativeStyle) { - app.setStyle("plastique"); + app.setStyle("fusion"); } // Translation --- a/games/abcrainwidget.cpp +++ b/games/abcrainwidget.cpp @@ -235,8 +235,7 @@ charballs.last()->wind = (qrand() % 8) + 2; charballs.last()->rad = 0; - chartext.append(new QGraphicsTextItem(QString(characterTemp), - charballs.last(), scene)); + chartext.append(new QGraphicsTextItem(QString(characterTemp), charballs.last())); chartext.last()->setFont(QFont("Courier", 16, 100)); chartext.last()->setPos(-(chartext.last()->boundingRect().width() / 2), -(chartext.last()->boundingRect().height() / 2)); --- a/sql/chartablesql.cpp +++ b/sql/chartablesql.cpp @@ -137,7 +137,7 @@ sortColumn(4); headerview->setStretchLastSection(true); - headerview->setResizeMode(QHeaderView::Interactive); + headerview->setSectionResizeMode(QHeaderView::Interactive); headerview->setSortIndicatorShown(true); // Resize the columns --- a/sql/lessontablesql.cpp +++ b/sql/lessontablesql.cpp @@ -202,7 +202,7 @@ sortColumn(-1); headerview->setStretchLastSection(true); - headerview->setResizeMode(QHeaderView::Interactive); + headerview->setSectionResizeMode(QHeaderView::Interactive); headerview->setSortIndicatorShown(true); // Resize the columns ix/log/?id=9173a7781bd0459fcaaedcf771fb1a87871e8724'>root/gnu/build/bootloader.scm
AgeCommit message (Expand)Author
2020-10-05bootloader: Fix u-boot installation....This is a follow-up of f19cf27c2b9ff92e2c0fd931ef7fde39c376adaa. The bootloader installation must be done on the final disk-image, hence using "disk-image-installer" instead of "installer" callback. * gnu/bootloader/u-boot.scm: Turn all installer callbacks into disk-image-installer callbacks. * gnu/build/bootloader.scm (write-file-on-device): Open the output file with 'no-truncate and 'no-create options. * gnu/system/image.scm (with-imported-modules*): Add (gnu build bootloader) module. Mathieu Othacehe
2020-05-05build: bootloader: Add install-efi procedure....* gnu/build/bootloader.scm (install-efi): New procedure copied from (gnu build vm). (install-efi-loader): New exported procedure, wrapping install-efi. * gnu/build/vm.scm (initialize-hard-disk): Adapt to use install-efi-loader. Mathieu Othacehe
2019-06-17utils: Add 'invoke/quiet'....* gnu/build/bootloader.scm (G_): Remove. (open-pipe-with-stderr, invoke/quiet): Move to... * guix/build/utils.scm: ... here. Use 'let-values' instead of 'define-values' because Guile 2.0 (the bootstrap Guile) doesn't know about 'define-values'. * po/guix/POTFILES.in: Remove gnu/build/bootloader.scm, and add guix/build/utils.scm. * tests/build-utils.scm: Remove import of (gnu build bootloader). Ludovic Courtès
2019-03-16booloader: Add 'invoke/quiet'....* gnu/build/bootloader.scm (G_): New macro. (open-pipe-with-stderr, invoke/quiet): New procedures. * tests/build-utils.scm ("invoke/quiet, success") ("invoke/quiet, failure") ("invoke/quiet, failure, message on stderr"): New tests. * po/guix/POTFILES.in: Add bootloader.scm. Ludovic Courtès
2017-12-15bootloader: Factorize write-file-on-device....* gnu/bootloader/extlinux.scm (install-extlinux): Factorize bootloader writing in a new procedure write-file-on-device defined in (gnu build bootloader). * gnu/build/bootloader.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add new file. * gnu/system/vm.scm (qemu-img): Adapt to import and use (gnu build bootloader) module during derivation building. * gnu/scripts/system.scm (bootloader-installer-derivation): Ditto. Mathieu Othacehe