Max Jendruk

Results 16 comments of Max Jendruk

Yes, it is this way so that it can be inlined by the compiler.

Hi @Conni2461, I made the changes you requested. Would you take a second look?

Hello @wassimk, it looks like you are using [dressing.nvim](https://github.com/stevearc/dressing.nvim) which already replaces the default internal `dap` ui by overwriting `vim.ui.select`. My solution to get the straight forward drop-down would be...

I did some tests permutating the pictures, formats and types. I came up with this, the checked cases crash: ![screen shot 2014-11-27 at 00 40 21](https://cloud.githubusercontent.com/assets/2190123/5210492/1f1e485a-75ce-11e4-964a-2dca7349eafd.png) I think we should...

Comment to > ### Variant interface The `Variant` class is one of the many small things which I really like. The support of any type was one of the initial...

We will find a solution that is satisfying for all of us once I am back in January.

I will implement this as soon as the variantmap for options is integrated

This method: ``` template template ValuePropertyTemplate::ValuePropertyTemplate(const std::string & name, Object & object, const Type & (Object::*getter_pointer)() const, void (Object::*setter_pointer)(const Type &)) : ValueProperty(name) , m_value(new AccessorValue(object, getter_pointer, setter_pointer)) { }...

Mhm, this corresponds to the way it is implemented in Qt. http://doc.qt.io/qt-5/qcolor.html http://doc.qt.io/qt-5/qcolor.html#rgba

`Color::rgba()` returns an unsigned int that somewhat looks like this `alpha red green blue`. This corresponds exactly to `QColor::rgba()` which returns an `QRgb` which is "An ARGB quadruplet on the...