From 4c39bafa21628869edff43d28e5648c6f582d598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Tue, 30 Sep 2008 20:22:33 +0000 Subject: [PATCH] - We don't actually need netapi libs, this fixes building for R5 under Zeta. - name the theme list populator thread. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27798 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- 3rdparty/mmu_man/themes/Jamfile | 2 +- 3rdparty/mmu_man/themes/ThemeInterfaceView.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/mmu_man/themes/Jamfile b/3rdparty/mmu_man/themes/Jamfile index 8fab0a7726..c09c9215f3 100644 --- a/3rdparty/mmu_man/themes/Jamfile +++ b/3rdparty/mmu_man/themes/Jamfile @@ -44,7 +44,7 @@ Application <3rdparty>Themes : ViewItem.cpp $(addonSources) : be media textencoding translation - $(TARGET_NETAPI_LIB) $(TARGET_LIBSTDC++) + $(TARGET_LIBSTDC++) : Themes.rdef ; diff --git a/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp b/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp index 22df6d5d43..d080e77f52 100644 --- a/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp +++ b/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp @@ -478,7 +478,7 @@ void ThemeInterfaceView::PopulateThemeList() if (c) c->SetEnabled(false); } - thread_id tid = spawn_thread(_ThemeListPopulatorTh, "", B_LOW_PRIORITY, this); + thread_id tid = spawn_thread(_ThemeListPopulatorTh, "ThemeListPopulator", B_LOW_PRIORITY, this); resume_thread(tid); }