Fix inadvertently renamed Orientation => Qt::Orientation.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/1/head
Slávek Banko 5 years ago
parent 093053ea0e
commit 3e9103e677
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -121,7 +121,7 @@ ImageEffect_RatioCrop::ImageEffect_RatioCrop(TQWidget* parent)
m_preciseCrop = new TQCheckBox(i18n("Exact"), cropSelection);
TQWhatsThis::add( m_preciseCrop, i18n("<p>Enable this option to force exact aspect ratio crop."));
m_orientLabel = new TQLabel(i18n("Qt::Orientation:"), cropSelection);
m_orientLabel = new TQLabel(i18n("Orientation:"), cropSelection);
m_orientCB = new TQComboBox( false, cropSelection );
m_orientCB->insertItem( i18n("Landscape") );
m_orientCB->insertItem( i18n("Portrait") );
@ -552,7 +552,7 @@ void ImageEffect_RatioCrop::slotSelectionOrientationChanged(int newOrientation)
setRatioCBText(newOrientation);
// Change Qt::Orientation ComboBox
// Change Orientation ComboBox
m_orientCB->setCurrentItem(newOrientation);

@ -146,7 +146,7 @@ RatioCropTool::RatioCropTool(TQObject* parent)
m_preciseCrop = new TQCheckBox(i18n("Exact"), cropSelection);
TQWhatsThis::add( m_preciseCrop, i18n("<p>Enable this option to force exact aspect ratio crop."));
m_orientLabel = new TQLabel(i18n("Qt::Orientation:"), cropSelection);
m_orientLabel = new TQLabel(i18n("Orientation:"), cropSelection);
m_orientCB = new RComboBox(cropSelection);
m_orientCB->insertItem( i18n("Landscape"));
m_orientCB->insertItem( i18n("Portrait"));
@ -592,7 +592,7 @@ void RatioCropTool::slotSelectionOrientationChanged(int newOrientation)
setRatioCBText(newOrientation);
// Change Qt::Orientation ComboBox
// Change Orientation ComboBox
m_orientCB->setCurrentItem(newOrientation);

@ -411,7 +411,7 @@ bool exifRotate(const TQString& file, const TQString& documentName)
// -- Metadata operations ------------------------------------------------------
// Reset the Exif orientation tag of the temp image to normal
DDebug() << "ExifRotate: set Qt::Orientation tag to normal: " << file << endl;
DDebug() << "ExifRotate: set Orientation tag to normal: " << file << endl;
metaData.load(temp);
metaData.setImageOrientation(DMetadata::ORIENTATION_NORMAL);

@ -58,7 +58,7 @@ Showfoto : Thumbbar moved to the left by default in vertical mode. Image pr
right to make a consistant GUI with digiKam main interface.
Showfoto : Thumbbar can be used to the bottom in horizontal mode.
Showfoto : New Exif Auto-rotate option like in digiKam ImageEditor.
Showfoto : New Set Qt::Orientation Exif flag to normal after Rotate/Flip like in digiKam ImageEditor.
Showfoto : New Set Orientation Exif flag to normal after Rotate/Flip like in digiKam ImageEditor.
*** 0.9.0-beta2 *******************************************************
@ -260,7 +260,7 @@ digiKam and DigikamImagePlugins BUGFIX FROM KDE BUGZILLA (alias B.K.O | http://b
122 ==> 131301 : Crash after add second image.
123 ==> 109820 : Utility script to export tag information of images into the filesystem.
124 ==> 117375 : Change file name without affecting extension.
125 ==> 131603 : Qt::Orientation of RAW-images (especially Canons *.cr2).
125 ==> 131603 : Orientation of RAW-images (especially Canons *.cr2).
126 ==> 131532 : Minolta exception code can break EXIF rotation.
127 ==> 131550 : digiKam/showfoto can't show jpeg image under PowerPC.
128 ==> 131549 : Endianess problem under Linux-PowerPC (with png images at least).

@ -151,7 +151,7 @@ digiKam BUGFIX FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org):
033 ==> 89365 : More standard menu structure.
034 ==> 144214 : The plural form of "child" is "children", not "childs".
035 ==> 124487 : No way to pause a slide show.
036 ==> 128975 : "Correct Exif Qt::Orientation Tag" does not change the mtime
036 ==> 128975 : "Correct Exif Orientation Tag" does not change the mtime
of the image file.
037 ==> 139814 : The window of digiKam exceed the screen if the resolution is 800x600.
038 ==> 144481 :Qt::Vertical window size cannot be reduced to VGA resolution.

@ -646,7 +646,7 @@ void DImgInterface::saveAs(const TQString& fileName, IOFileSettingsContainer *io
// Update Exif Document Name tag with the original file name.
meta.setExifTagString("Exif.Image.DocumentName", getImageFileName());
// Update Exif Qt::Orientation tag if necessary.
// Update Exif Orientation tag if necessary.
if( setExifOrientationTag )
meta.setImageOrientation(DMetadata::ORIENTATION_NORMAL);

Loading…
Cancel
Save