| Summary: | Wrong dialog title "Image Restauration" | ||
|---|---|---|---|
| Product: | [Applications] krita | Reporter: | Frederik Schwarzer <schwarzer> |
| Component: | General | Assignee: | Krita Bugs <krita-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | kis_cimg_filter.h patch | ||
|
Description
Frederik Schwarzer
2006-11-03 06:41:35 UTC
confirmed with Kubuntu 6.10 running KDE 3.5.5 as well. As soon as the popup opens, the title states "Image Restauration" Created attachment 18373 [details]
kis_cimg_filter.h patch
this is a patch to fix the Restauration to Restoration
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? :) 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();
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();
Fixed |