Changeset 7a05d924 in mainline for uspace/app/taskbar/taskbar.c


Ignore:
Timestamp:
2022-10-20T08:05:06Z (23 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7cc30e9
Parents:
1766326
git-author:
Jiri Svoboda <jiri@…> (2022-10-19 18:04:42)
git-committer:
Jiri Svoboda <jiri@…> (2022-10-20 08:05:06)
Message:

Return correct number of windows from display server

But not the caption since the display server does not have it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/taskbar.c

    r1766326 r7a05d924  
    174174        }
    175175
    176         rc = wndlist_append(taskbar->wndlist, "Text Editor");
    177         if (rc != EOK) {
    178                 printf("Error adding window list entry.\n");
     176        rc = wndlist_attach_wm(taskbar->wndlist, taskbar->wndmgt);
     177        if (rc != EOK) {
     178                printf("Error attaching window management service.\n");
    179179                goto error;
    180180        }
Note: See TracChangeset for help on using the changeset viewer.