aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp
blob: a2ce8843d11c0a9c015e451478e54fb8cff8026c (plain)
1
2
3
4
5
6
7
8
//! [0]
def heightForWidth(self, w):
    if cache_dirty or cached_width != w:
        h = calculateHeightForWidth(w)
        self.cached_hfw = h
        return h
    return cached_hfw
//! [0]