From a750f8e2df028f3c84d7783edf1cd16389ea5588 Mon Sep 17 00:00:00 2001 From: windowsinsiders <72295318+windowsinsiders@users.noreply.github.com> Date: Sat, 3 Oct 2020 13:36:11 +0530 Subject: [PATCH 1/2] Update To-Do List.txt --- src/To-Do List.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/To-Do List.txt b/src/To-Do List.txt index b1396425..a33c911c 100644 --- a/src/To-Do List.txt +++ b/src/To-Do List.txt @@ -9,6 +9,8 @@ Add TClockEx Feature: ZZ = 3 character TimeZone Code in Custom Format String. NEED TO ADD: CommandLine /Switch Option to Mouse Click Run App X Feature. +Fix Bugs And Add Support For Newer Windows 10 Builds + Requests: From DC Member: freaky44 - It would be great to have the option to see the size and number of files of the recycle bin in the Mouse-over Tooltip Text. (e.g. "10 Files, 135 MB"). @@ -115,7 +117,7 @@ DONE - Fix Context Menu Dismissal Focus Issue DONE - Find Out Why ToolTip is Bashful (Never Shows the Second Time) -DONE - Need to resolve the focus issue � double click action not firing on first run anymore. +DONE - Need to resolve the focus issue – double click action not firing on first run anymore. This is tied to the context menu dismissal bugg (TRUE ...All 3 Buggs Fell Together!). DONE - NEED TO Restrict Stopwatch Dialog to Single Instance (Evil Psychotic Twin Issue). From 5b6bd68e9987d1ba1cb2361baa25319d2fae6f3e Mon Sep 17 00:00:00 2001 From: windowsinsiders <72295318+windowsinsiders@users.noreply.github.com> Date: Sat, 3 Oct 2020 13:40:37 +0530 Subject: [PATCH 2/2] Added Inheritance For Further Functioning Added Inheritance For Further Functioning --- src/options/main.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/options/main.c b/src/options/main.c index b9f6fdc5..718f9d27 100644 --- a/src/options/main.c +++ b/src/options/main.c @@ -104,3 +104,34 @@ int main(int argc, char* argv[]) { } return 0; } + +//Base class +class Parent +{ + public: + int id_p; +}; + +// Sub class inheriting from Base Class(Parent) +class Child : public Parent +{ + public: + int id_c; +}; + +//main function +int main() +{ + + Child obj1; + + // An object of class child has all data members + // and member functions of class parent + obj1.id_c = 7; + obj1.id_p = 91; + cout << "Child id is " << obj1.id_c << endl; + cout << "Parent id is " << obj1.id_p << endl; + + return 0; +} +