update to r14.1.1

pull/10/head
Andrew Randrianasulu 6 months ago
parent ba7a171fc0
commit 58d263711e

2
.gitignore vendored

@ -0,0 +1,2 @@
bk
build

@ -60,7 +60,7 @@ endif( WITH_OPENMP )
##### check for jpeg
if( BUILD_KDCRAW )
if( BUILD_DCRAW )
find_package( JPEG )
if( JPEG_FOUND )
@ -69,8 +69,15 @@ if( BUILD_KDCRAW )
tde_message_fatal( "jpeg library is required, but was not found on your system" )
endif()
find_package( Jasper )
if( JASPER_FOUND )
set( HAVE_JASPER 1 )
else()
tde_message_fatal( "jasper library is required, but was not found on your system" )
endif()
##### check for the math libc
find_library( MATH_LIBC m )
endif( BUILD_KDCRAW )
endif( BUILD_DCRAW )

@ -42,7 +42,7 @@ class DcrawBinaryPriv;
class LIBKDCRAW_EXPORT DcrawBinary : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -46,7 +46,7 @@ class DcrawSettingsWidgetPriv;
class LIBKDCRAW_EXPORT DcrawSettingsWidget : public TQToolBox
{
Q_OBJECT
TQ_OBJECT
public:

@ -48,7 +48,7 @@ class KDcrawPriv;
class LIBKDCRAW_EXPORT KDcraw : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -68,7 +68,7 @@ RComboBox::RComboBox(TQWidget *parent)
d->combo = new KComboBox(this);
d->resetButton = new TQToolButton(this);
d->resetButton->setAutoRaise(true);
d->resetButton->setFocusPolicy(TQ_NoFocus);
d->resetButton->setFocusPolicy(TQWidget::NoFocus);
d->resetButton->setIconSet(SmallIconSet("reload_page"));
TQToolTip::add(d->resetButton, i18n("Reset to default value"));

@ -45,7 +45,7 @@ class RComboBoxPriv;
class LIBKDCRAW_EXPORT RComboBox : public TQHBox
{
Q_OBJECT
TQ_OBJECT
public:

@ -69,7 +69,7 @@ RIntNumInput::RIntNumInput(TQWidget *parent)
d->input = new KIntNumInput(this);
d->resetButton = new TQToolButton(this);
d->resetButton->setAutoRaise(true);
d->resetButton->setFocusPolicy(TQ_NoFocus);
d->resetButton->setFocusPolicy(TQWidget::NoFocus);
d->resetButton->setIconSet(SmallIconSet("reload_page"));
TQToolTip::add(d->resetButton, i18n("Reset to default value"));
@ -167,7 +167,7 @@ RDoubleNumInput::RDoubleNumInput(TQWidget *parent)
d->input = new KDoubleNumInput(this);
d->resetButton = new TQToolButton(this);
d->resetButton->setAutoRaise(true);
d->resetButton->setFocusPolicy(TQ_NoFocus);
d->resetButton->setFocusPolicy(TQWidget::NoFocus);
d->resetButton->setIconSet(SmallIconSet("reload_page"));
TQToolTip::add(d->resetButton, i18n("Reset to default value"));

@ -46,7 +46,7 @@ class RIntNumInputPriv;
class LIBKDCRAW_EXPORT RIntNumInput : public TQHBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -89,7 +89,7 @@ class RDoubleNumInputPriv;
class LIBKDCRAW_EXPORT RDoubleNumInput : public TQHBox
{
Q_OBJECT
TQ_OBJECT
public:

Loading…
Cancel
Save