Compare commits

..

No commits in common. "0.13" and "0.12" have entirely different histories.
0.13 ... 0.12

4 changed files with 6 additions and 15 deletions

View file

@ -170,13 +170,13 @@ void player_gui::on_lineEdit_textChanged(const QString &arg1){
std::cout << "suchen" << std::endl;
ui->listWidget->clear();
for(int x=1;x<=this->Sender;x++){
this->Name_tmp = this->Name[x].toLower();
if(this->Name_tmp.contains(arg1.toLower())){
if(this->Name[x].contains(arg1)){
ui->listWidget->addItem(this->Name[x]);
}
}
}
void player_gui::on_listWidget_itemClicked(QListWidgetItem *item){
void player_gui::on_listWidget_itemClicked(QListWidgetItem *item)
{
std::cout << item->text().toStdString() << std::endl;
this->play(item);
}

View file

@ -37,7 +37,6 @@ private:
int sender_ausgeben(void);
int Sender;
QString Name[10000];
QString Name_tmp;
QString URL[10000];
QString ip;
QNetworkAccessManager *manager;

View file

@ -80,8 +80,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>1160</width>
<height>20</height>
<width>1210</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuProgramm">

View file

@ -4,20 +4,12 @@ QT += \
widgets \
network
QMAKE_CFLAGS_RELEASE += -Os -momit-leaf-frame-pointer
QMAKE_LFLAGS += -static -static-libgcc
CONFIG += \
c++11 \
static
DEFINES += \
VLC_STATICLIB \
QT_STATIC_BUILD
LIBS += \
-lvlc.dll
-lvlc
SOURCES += \
main.cpp \