[okteta] [Bug 94361] khexedit does not handle .hex or .s19 files

2016-02-24 Thread NooN via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=94361

NooN  changed:

   What|Removed |Added

 CC||oo.o+kde@windbuechse.samba-
   ||tng.org

--- Comment #5 from NooN  ---
Can Okteta now work with non-continous areas of bytes?

I have seen that there is inital support for exporting ihex.
Where would be a decoder for that/those formats be implemented?
In the libkasten?

Thanks for your work

-- 
You are receiving this mail because:
You are watching all bug changes.


[clazy] [Bug 358732] New: qstring-uneeded-heap-allocations: fixit changes QString to QLatin1String even if a QString function (sprintf, arg...) on that object

2016-01-29 Thread NooN via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=358732

Bug ID: 358732
   Summary: qstring-uneeded-heap-allocations: fixit changes
QString to QLatin1String even if a QString function
(sprintf, arg...) on that object
   Product: clazy
   Version: unspecified
  Platform: Debian testing
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: oo.o+...@windbuechse.samba-tng.org
CC: smart...@kde.org

Created attachment 96901
  --> https://bugs.kde.org/attachment.cgi?id=96901&action=edit
testcase for QString with sprintf

If a QString is created and a function of that object get's called ist must not
be converted to a QLatin1String.
That class has only a minimal set of functions and for example arg or sprintf
is not supported.

testcase_qstring.cpp:21:5: warning: QString(const char*) being called
[-Wclazy-qstring-uneeded-heap-allocations]
QString("").sprintf("0x%02X", 0x1E);

If the (automatic) fixit get applied there is than a no member error.

testcase_with_fixit.cpp:21:23: error: no member named 'sprintf' in
'QLatin1String'
QLatin1String("").sprintf("0x%02X", 0x1E);

-- 
You are receiving this mail because:
You are watching all bug changes.