KDE PIM/Meetings/Toulouse2016: Difference between revisions

From KDE Community Wiki
(Created page with "== Attendees == * Laurent * K´evin * Franck * Dan * Andre * John * Sandro * Christian * Volker == Notes == === libkleo dependencies === TODO Andre/Christian/Sandro === I...")
 
No edit summary
Line 25: Line 25:
Existing users:
Existing users:
* incidence editor time zone combo box
* incidence editor time zone combo box
=== C++11 auto usage ===
Two views on this: always-auto fans and people concerned about readability of code.
Therefore we start with the following compromise: Use auto primarily to avoid duplicated type information (ie. when the type is already written on the right hand side), or when the type is "generally known" and inconvenient to write (e.g. iterators).

Revision as of 09:19, 2 April 2016

Attendees

  • Laurent
  • K´evin
  • Franck
  • Dan
  • Andre
  • John
  • Sandro
  • Christian
  • Volker

Notes

libkleo dependencies

TODO Andre/Christian/Sandro

ICal TimeZones

Plan:

  • drop KCalCore::IcalTimeZone* classes
  • just provide a list of available additional time zones known to KCalCore

Existing users:

  • incidence editor time zone combo box

C++11 auto usage

Two views on this: always-auto fans and people concerned about readability of code.

Therefore we start with the following compromise: Use auto primarily to avoid duplicated type information (ie. when the type is already written on the right hand side), or when the type is "generally known" and inconvenient to write (e.g. iterators).