Przeglądaj źródła

WindowServer: Remove the old cursor character bitmaps.

Andreas Kling 6 lat temu
rodzic
commit
af09f994ba
1 zmienionych plików z 0 dodań i 40 usunięć
  1. 0 40
      Servers/WindowServer/WSWindowManager.cpp

+ 0 - 40
Servers/WindowServer/WSWindowManager.cpp

@@ -116,46 +116,6 @@ WSWindowManager& WSWindowManager::the()
     return *s_the;
 }
 
-static const char* cursor_bitmap_inner_ascii = {
-    " #          "
-    " ##         "
-    " ###        "
-    " ####       "
-    " #####      "
-    " ######     "
-    " #######    "
-    " ########   "
-    " #########  "
-    " ########## "
-    " ######     "
-    " ##  ##     "
-    " #    ##    "
-    "      ##    "
-    "       ##   "
-    "       ##   "
-    "            "
-};
-
-static const char* cursor_bitmap_outer_ascii = {
-    "##          "
-    "# #         "
-    "#  #        "
-    "#   #       "
-    "#    #      "
-    "#     #     "
-    "#      #    "
-    "#       #   "
-    "#        #  "
-    "#         # "
-    "#      #### "
-    "#  ##  #    "
-    "# #  #  #   "
-    "##   #  #   "
-    "      #  #  "
-    "      #  #  "
-    "       ##   "
-};
-
 void WSWindowManager::flip_buffers()
 {
     swap(m_front_bitmap, m_back_bitmap);