summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-09-22LibC: Let's assert in rewind() that fseek()ing to the beginning workedAndreas Kling
2019-09-22GDialog: Remove self from parent when the nested event loop returnsAndreas Kling
2019-09-22LibCore: Remove leftover debug spam in CObject::remove_child()Andreas Kling
2019-09-22LibCore: Add CObject::remove_from_parent()Andreas Kling
2019-09-22LibCore: Remove ObjectPtr in favor of RefPtrAndreas Kling
2019-09-22LibCore: Make CObject reference-countedAndreas Kling
2019-09-21LibCore: Convert CFile to ObjectPtrAndreas Kling
2019-09-21LibGUI: Don't create GMessageBox and GInputBox on the stackAndreas Kling
2019-09-21LibGUI: Convert remaining random little things to ObjectPtrAndreas Kling
2019-09-21GButton: Make the constructors protected in favor of construct()Andreas Kling
2019-09-21GButton: Convert most code to using ObjectPtr for GButtonAndreas Kling
2019-09-21LibGUI: Convert GFrame to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GCheckBox to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GRadioButton to ObjectPtrAndreas Kling
2019-09-21LibGUI: Get rid of GWindow's destroy-on-close mechanismAndreas Kling
2019-09-21LibGUI: Convert GWindow to ObjectPtrAndreas Kling
2019-09-21LibCore: Remove CTimer::create() overloads in favor of construct()Andreas Kling
2019-09-21LibCore: ObjectPtr should delete the pointee when clearedAndreas Kling
2019-09-21CHttpJob: Shutting down the job should actually destroy the socketAndreas Kling
2019-09-21LibCore: Make it possible to cancel pending CNetworkJobsAndreas Kling
2019-09-21LibGUI: Convert GWidget to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GComboBox to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GSlider to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GProgressBar to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GStatusBar to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GToolBar to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GSpinBox to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GGroupBox to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GSplitter to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GTreeView to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GTableView to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GItemView to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GTextBox, GTextEditor and GResizeCorner to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CTCPServer to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GScrollBar to ObjectPtrAndreas Kling
2019-09-21LibGUI: Make the GLabel constructors protectedAndreas Kling
2019-09-21LibGUI: Convert GLabel to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CHttpJob to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CLocalServer to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CLocalSocket to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CTCPSocket to ObjectPtr, add construct() helperAndreas Kling
2019-09-20LibCore+LibGUI+WindowServer: Make events bubble up through ancestorsAndreas Kling
2019-09-20GCommonActions: Add "Open..." actionAndreas Kling
2019-09-20LibCore: Convert CNotifier to ObjectPtrAndreas Kling
2019-09-20LibCore: Convert CTimer to ObjectPtrAndreas Kling
2019-09-20LibCore: Introduce ObjectPtr, a step towards reference-counted CObjectAndreas Kling
2019-09-19IPv4: Support overriding the default TTL (64)Andreas Kling
2019-09-18GTableView: Only paint the currently visible table rowsAndreas Kling
2019-09-17GWidget: Add a flag to ignore greediness in GWidget::hit_test()Andreas Kling
2019-09-17Terminal: Ensure a \t always advances by at least one columnSergey Bugaev