
On Tue, Jun 7, 2016 at 2:14 AM, Tavmjong Bah <tavmjong@...8...> wrote:
- ID's should not be added to the class attribute. They need to be
added to the style sheet which is not easy to do at the moment. The SPStyle class is not very complete.
How should I proceed on this?
- The style dialog should show the selectors from the style sheet so
it should show:
1 .red 2 #MyRect1, #MyRect2, #MyRect3
This is so the user immediately know what selectors are defined.
So this would happen when an existing drawing with some stylesheet is opened, if stylesheet exists for the drawing.
- The automake build is broken. I've attached a patch.
Okay, I will apply these changes.
- In loops, use 'unsigned' values to prevent warnings about comparing
unsigned and signed quantities:
for( unsigned i = 0; i < selected.size(); ++i ) {
Changed this. Definitely the value of size is not negative here. Some questions out of curiosity: How using this (i.e. unsigned) affects performance? Or something associated with the software? Why should one prefer it over int?