Fix missing colon in haiku UI frontend
Some checks failed
Build / get-source-code (push) Blocked by required conditions
Build / build-deb (push) Blocked by required conditions
Build / build-appimage (push) Blocked by required conditions
Build / build-android (push) Blocked by required conditions
Build / build-windows (push) Blocked by required conditions
Build / build-gentoo (push) Failing after 1m10s
Build / download-system-deps (push) Has been cancelled

This commit is contained in:
Zachary Hall 2024-12-22 12:59:22 -08:00
parent 9899794b81
commit 9316f82023

View file

@ -21,7 +21,7 @@ class HaikuPrefsWindow : public BWindow {
std::map<std::string, BBitmap*> cats; std::map<std::string, BBitmap*> cats;
std::map<std::string, BRadioButton*> cat_btns; std::map<std::string, BRadioButton*> cat_btns;
BCheckBox *cat_enable; BCheckBox *cat_enable;
void AddCat(std:string name, BBitmap* img); void AddCat(std::string name, BBitmap* img);
BBitmap *LoadCat(const char *path); BBitmap *LoadCat(const char *path);
BBitmap *LoadCat(const void *ptr, size_t len, const char *name); BBitmap *LoadCat(const void *ptr, size_t len, const char *name);
int32 cur_option = 0; int32 cur_option = 0;