Bug 136751 - Wrong dialog title "Image Restauration"
Summary: Wrong dialog title "Image Restauration"
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: General (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-03 06:41 UTC by Frederik Schwarzer
Modified: 2006-11-03 12:56 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
kis_cimg_filter.h patch (761 bytes, patch)
2006-11-03 08:28 UTC, Rich Johnson
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Frederik Schwarzer 2006-11-03 06:41:35 UTC
Version:           1.6.0 (using KDE KDE 3.5.5)
Installed from:    Debian testing/unstable Packages

Go to Filter -> Enhance -> CImg Image Restoration
Title now says "Image Restauration"
Comment 1 Rich Johnson 2006-11-03 08:15:16 UTC
confirmed with Kubuntu 6.10 running KDE 3.5.5 as well. As soon as the popup opens, the title states "Image Restauration"
Comment 2 Rich Johnson 2006-11-03 08:28:10 UTC
Created attachment 18373 [details]
kis_cimg_filter.h patch

this is a patch to fix the Restauration to Restoration
Comment 3 Sander Koning 2006-11-03 09:22:03 UTC
I saw it before, but forgot to mention... I'd apply the patch if I was sure it'd fit in 1.6 at this point. Cyrille? :)
Comment 4 Halla Rempt 2006-11-03 09:22:21 UTC
SVN commit 601418 by rempt:

Fixed wrong title in dialog. Thanks Richard!
CCBUG: 136751 


 M  +1 -1      kis_cimg_filter.h  


--- trunk/koffice/krita/plugins/filters/cimg/kis_cimg_filter.h #601417:601418
@@ -55,7 +55,7 @@
     KisCImgFilter();
 public:
     virtual void process(const KisPaintDeviceSP src, const QPoint& srcTopLeft, KisPaintDeviceSP dst, const QPoint& dstTopLeft, const QSize& size, KisFilterConfiguration* config);
-    static inline KoID id() { return KoID("cimg", i18n("Image Restauration (cimg-based)")); };
+    static inline KoID id() { return KoID("cimg", i18n("Image Restoration (cimg-based)")); };
     virtual bool supportsPainting() { return false; }
     virtual bool supportsPreview() { return false; }
     virtual ColorSpaceIndependence colorSpaceIndependence();
Comment 5 Halla Rempt 2006-11-03 09:23:06 UTC
SVN commit 601419 by rempt:

CCBUG: 136751
Fixed dialog title. Thanks Richard!


 M  +1 -1      kis_cimg_filter.h  


--- branches/koffice/1.6/koffice/krita/plugins/filters/cimg/kis_cimg_filter.h #601418:601419
@@ -55,7 +55,7 @@
     KisCImgFilter();
 public:
     virtual void process(KisPaintDeviceSP,KisPaintDeviceSP, KisFilterConfiguration* , const QRect&);
-    static inline KisID id() { return KisID("cimg", i18n("Image Restauration (cimg-based)")); };
+    static inline KisID id() { return KisID("cimg", i18n("Image Restoration (cimg-based)")); };
     virtual bool supportsPainting() { return false; }
     virtual bool supportsPreview() { return false; }
     virtual ColorSpaceIndependence colorSpaceIndependence();
Comment 6 Halla Rempt 2006-11-03 12:56:18 UTC
Fixed