all repos — fluxbox @ 9086ccafbec2c694abcf7c56814df61b05924103

custom fork of the fluxbox windowmanager

compile fix: sunCC again, wants a compile time constant for arrays
Mathias Gumz akira at fluxbox dot org
commit

9086ccafbec2c694abcf7c56814df61b05924103

parent

e850b0191977da47eb7233e248dbab7ebd1d21f0

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/FbTk/ImageControl.ccsrc/FbTk/ImageControl.cc

@@ -111,14 +111,14 @@

// 'icolors' will hold the first 'nr_icolors' colors of the // given (indexed) colormap. const size_t nr_icolors = std::min(256, 1 << screen_depth); - XColor icolors[nr_icolors]; + std::vector<XColor> icolors(nr_icolors); // give each icolor an index for (i = 0; i < nr_icolors; i++) icolors[i].pixel = i; // query the colors of the colormap and store them into 'icolors' - XQueryColors(dpy, cmap, icolors, nr_icolors); + XQueryColors(dpy, cmap, &icolors[0], nr_icolors); // try to find a close color for all not allocated colors for (i = 0; i < colors.size(); i++) {