Finish 1.5.1

This commit is contained in:
Arin Alexander 2019-07-04 20:42:12 +03:00
commit 8b24fa3558
2 changed files with 11 additions and 6 deletions

View File

@ -127,7 +127,7 @@ RCC_DIR = $${ARCH_DIR}/$${BUILD_TYPE}/rcc
LIMEREPORT_VERSION_MAJOR = 1
LIMEREPORT_VERSION_MINOR = 5
LIMEREPORT_VERSION_RELEASE = 0
LIMEREPORT_VERSION_RELEASE = 1
LIMEREPORT_VERSION = '$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}'
DEFINES *= LIMEREPORT_VERSION_STR=\\\"$${LIMEREPORT_VERSION}\\\"

View File

@ -140,19 +140,24 @@ void FontEditorWidget::slotPropertyChanged(const QString &objectName, const QStr
void FontEditorWidgetForPage::slotFontChanged(const QFont& font)
{
if (!ignoreSlots())
m_page->setFont(font);
}
void FontEditorWidgetForPage::slotFontSizeChanged(const QString& value)
{
if (!ignoreSlots()){
FontEditorWidget::slotFontSizeChanged(value);
m_page->setFont(resFont());
}
}
void FontEditorWidgetForPage::slotFontAttribsChanged(bool value)
{
if (!ignoreSlots()){
FontEditorWidget::slotFontAttribsChanged(value);
m_page->setFont(resFont());
}
}
#ifdef HAVE_REPORT_DESIGNER