diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-04-14 14:39:04 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-04-14 14:39:04 +0000 |
| commit | d2bcec1cda227de11fef6c62a6f4aae357c3760f (patch) | |
| tree | 88f0d24a668237d8d44c379f02ee9a58eb71d4a2 | |
| parent | ffce7be32582e3e93ca4d18c751f5c4e250a661e (diff) | |
made bsetroot compile with the new code for references instead of pointers
| -rw-r--r-- | util/bsetroot.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/bsetroot.cc b/util/bsetroot.cc index f0912cab..d9cd4fb2 100644 --- a/util/bsetroot.cc +++ b/util/bsetroot.cc @@ -26,7 +26,7 @@ bsetroot::bsetroot(int argc, char **argv, char *dpy_name) img_ctrl = new BImageControl*[getNumberOfScreens()]; for (; i < getNumberOfScreens(); i++) - img_ctrl[i] = new BImageControl(this, getScreenInfo(i), True); + img_ctrl[i] = new BImageControl(*this, *getScreenInfo(i), True); for (i = 1; i < argc; i++) { if (! strcmp("-help", argv[i])) { |
