diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-07-27 19:46:03 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-07-27 19:46:03 +0000 |
commit | 181a76888dc22e5c280e240c4896563d6e417551 (patch) | |
tree | da700f4c7e87e71186517bc26b84f437ef6090fa /media-gfx/showimg/files | |
parent | update (diff) | |
download | historical-181a76888dc22e5c280e240c4896563d6e417551.tar.gz historical-181a76888dc22e5c280e240c4896563d6e417551.tar.bz2 historical-181a76888dc22e5c280e240c4896563d6e417551.zip |
New revision that adds a gcc3 patch and the missing kdebase dep. This fixes bug #4094.
Diffstat (limited to 'media-gfx/showimg/files')
-rw-r--r-- | media-gfx/showimg/files/digest-showimg-0.7-r1 | 1 | ||||
-rw-r--r-- | media-gfx/showimg/files/showimg-0.7-gcc3.diff | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/media-gfx/showimg/files/digest-showimg-0.7-r1 b/media-gfx/showimg/files/digest-showimg-0.7-r1 new file mode 100644 index 000000000000..bc68b3ddfa1f --- /dev/null +++ b/media-gfx/showimg/files/digest-showimg-0.7-r1 @@ -0,0 +1 @@ +MD5 63d21ffe645975c9fb3d829955ec46c2 showimg-0.7.tar.bz2 748958 diff --git a/media-gfx/showimg/files/showimg-0.7-gcc3.diff b/media-gfx/showimg/files/showimg-0.7-gcc3.diff new file mode 100644 index 000000000000..ce8e01499dc8 --- /dev/null +++ b/media-gfx/showimg/files/showimg-0.7-gcc3.diff @@ -0,0 +1,55 @@ +diff -ur showimg/batchrenamer.cpp showimg/batchrenamer.cpp +--- showimg/batchrenamer.cpp Mon Dec 24 12:28:31 2001 ++++ showimg/batchrenamer.cpp Sun Jul 28 11:08:55 2002 +@@ -29,7 +29,7 @@ + { + } + +-void BatchRenamer::processFiles( struct data* files, enum mode m, struct values* val, bool preview = false ) ++void BatchRenamer::processFiles( struct data* files, enum mode m, struct values* val, bool preview ) + { + QString tmp; + int i; +diff -ur showimg/history_action.cpp showimg/history_action.cpp +--- showimg/history_action.cpp Mon Dec 24 12:28:31 2001 ++++ showimg/history_action.cpp Sun Jul 28 11:06:47 2002 +@@ -7,7 +7,7 @@ + #include <kiconloader.h> + + HistoryAction::HistoryAction( const QString& text, const QString& icon, int accel, +- const QObject* receiver, const char* slot, QObject* parent, const char* name = 0 ) ++ const QObject* receiver, const char* slot, QObject* parent, const char* name ) + : KAction( text, icon, accel, receiver, slot, parent, name ) + { + m_popup = 0; +diff -ur showimg/numSlider.cpp showimg/numSlider.cpp +--- showimg/numSlider.cpp Mon Dec 24 12:28:31 2001 ++++ showimg/numSlider.cpp Sun Jul 28 11:04:17 2002 +@@ -13,15 +13,15 @@ + + extern int max(int a, int b); + +-numSlider::numSlider( QWidget *parent=0, const char *name=0 ) ++numSlider::numSlider( QWidget *parent, const char *name ) + : QWidget(parent, name) + { + init(0, 10, 0, 0, QBoxLayout::LeftToRight); + } + + +-numSlider::numSlider( QBoxLayout::Direction aDir, QWidget *parent=0, +- const char *name=0 ) ++numSlider::numSlider( QBoxLayout::Direction aDir, QWidget *parent, ++ const char *name ) + : QWidget(parent, name) + { + init(0, 10, 0, 0, aDir); +@@ -30,7 +30,7 @@ + + numSlider::numSlider(double minValue, double maxValue, int decimals, + double value, QBoxLayout::Direction aDir, +- QWidget *parent=0, const char *name=0 ) ++ QWidget *parent, const char *name ) + : QWidget(parent, name) + { + init(minValue, maxValue, decimals, value, aDir); |